Changeset 62b6d17 in mainline for kernel/test/mm
- Timestamp:
- 2006-12-14T16:47:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aeaebcc
- Parents:
- 55cc9bc
- Location:
- kernel/test/mm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/mm/falloc2.c
r55cc9bc r62b6d17 108 108 109 109 for (i = 0; i < THREADS; i++) { 110 thread_t * thrd = thread_create(falloc, NULL, TASK, 0, "falloc" );110 thread_t * thrd = thread_create(falloc, NULL, TASK, 0, "falloc", false); 111 111 if (!thrd) { 112 112 printf("Could not create thread %d\n", i); -
kernel/test/mm/slab1.c
r55cc9bc r62b6d17 139 139 semaphore_initialize(&thr_sem, 0); 140 140 for (i = 0; i < THREADS; i++) { 141 if (!(t = thread_create(slabtest, (void *) (unative_t) i, TASK, 0, "slabtest" )))141 if (!(t = thread_create(slabtest, (void *) (unative_t) i, TASK, 0, "slabtest", false))) 142 142 printf("Could not create thread %d\n", i); 143 143 else -
kernel/test/mm/slab2.c
r55cc9bc r62b6d17 191 191 semaphore_initialize(&thr_sem,0); 192 192 for (i = 0; i < THREADS; i++) { 193 if (!(t = thread_create(slabtest, NULL, TASK, 0, "slabtest" )))193 if (!(t = thread_create(slabtest, NULL, TASK, 0, "slabtest", false))) 194 194 printf("Could not create thread %d\n", i); 195 195 else
Note:
See TracChangeset
for help on using the changeset viewer.