Changeset 43114c5 in mainline for test/synch/rwlock5/test.c
- Timestamp:
- 2005-04-09T18:22:53Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8262010
- Parents:
- e6ba9a3f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/synch/rwlock5/test.c
re6ba9a3f r43114c5 96 96 for (j=0; j<(READERS+WRITERS)/2; j++) { 97 97 for (k=0; k<i; k++) { 98 thrd = thread_create(reader, NULL, the->task, 0);98 thrd = thread_create(reader, NULL, TASK, 0); 99 99 if (thrd) 100 100 thread_ready(thrd); … … 103 103 } 104 104 for (k=0; k<(4-i); k++) { 105 thrd = thread_create(writer, NULL, the->task, 0);105 thrd = thread_create(writer, NULL, TASK, 0); 106 106 if (thrd) 107 107 thread_ready(thrd);
Note:
See TracChangeset
for help on using the changeset viewer.