Changeset ff14c520 in mainline for test/synch/rwlock4/test.c
- Timestamp:
- 2006-03-16T22:31:39Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 93165be
- Parents:
- 37c57f2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/synch/rwlock4/test.c
r37c57f2 rff14c520 138 138 printf("Creating %d readers\n", k); 139 139 for (i=0; i<k; i++) { 140 thrd = thread_create(reader, NULL, TASK, 0 );140 thrd = thread_create(reader, NULL, TASK, 0, "reader"); 141 141 if (thrd) 142 142 thread_ready(thrd); … … 148 148 printf("Creating %d writers\n", k); 149 149 for (i=0; i<k; i++) { 150 thrd = thread_create(writer, NULL, TASK, 0 );150 thrd = thread_create(writer, NULL, TASK, 0, "writer"); 151 151 if (thrd) 152 152 thread_ready(thrd);
Note:
See TracChangeset
for help on using the changeset viewer.