- Timestamp:
- 2005-11-10T13:56:26Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0172eba
- Parents:
- 13fe013
- Location:
- test/synch
- Files:
- 
      - 4 edited
 
 - 
          
  rwlock4/test.c (modified) (1 diff)
- 
          
  rwlock5/test.c (modified) (1 diff)
- 
          
  semaphore1/test.c (modified) (1 diff)
- 
          
  semaphore2/test.c (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      test/synch/rwlock4/test.cr13fe013 r59e07c91 50 50 static waitq_t can_start; 51 51 52 __u32 seed = 0xdeadbe af;52 __u32 seed = 0xdeadbeef; 53 53 54 54 static __u32 random(__u32 max); 
- 
      test/synch/rwlock5/test.cr13fe013 r59e07c91 42 42 43 43 static waitq_t can_start; 44 static volatile int items_read;45 static volatile int items_written;44 static atomic_t items_read; 45 static atomic_t items_written; 46 46 47 47 static void writer(void *arg); 
- 
      test/synch/semaphore1/test.cr13fe013 r59e07c91 43 43 44 44 static waitq_t can_start; 45 static volatile int items_produced;46 static volatile int items_consumed;45 static atomic_t items_produced; 46 static atomic_t items_consumed; 47 47 48 48 static void consumer(void *arg); 
- 
      test/synch/semaphore2/test.cr13fe013 r59e07c91 45 45 static waitq_t can_start; 46 46 47 __u32 seed = 0xdeadbe af;47 __u32 seed = 0xdeadbeef; 48 48 49 49 static __u32 random(__u32 max); 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
