Changeset 228666c in mainline for kernel/test/synch
- Timestamp:
- 2010-02-20T18:41:53Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b03a666
- Parents:
- bc9da2a
- Location:
- kernel/test/synch
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/synch/rwlock5.c
rbc9da2a r228666c 70 70 { 71 71 int i, j, k; 72 long readers, writers; 72 atomic_count_t readers; 73 atomic_count_t writers; 73 74 74 75 waitq_initialize(&can_start); -
kernel/test/synch/semaphore1.c
rbc9da2a r228666c 73 73 { 74 74 int i, j, k; 75 int consumers, producers; 75 atomic_count_t consumers; 76 atomic_count_t producers; 76 77 77 78 waitq_initialize(&can_start);
Note:
See TracChangeset
for help on using the changeset viewer.