Changeset ff14c520 in mainline for test/mm/slab2/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/mm/slab2/test.c
r37c57f2 rff14c520 123 123 #define THREADS 8 124 124 125 static void thread(void *priv)125 static void slabtest(void *priv) 126 126 { 127 127 void *data=NULL, *new; … … 189 189 semaphore_initialize(&thr_sem,0); 190 190 for (i=0; i<THREADS; i++) { 191 if (!(t = thread_create( thread, NULL, TASK, 0)))191 if (!(t = thread_create(slabtest, NULL, TASK, 0, "slabtest"))) 192 192 panic("could not create thread\n"); 193 193 thread_ready(t);
Note:
See TracChangeset
for help on using the changeset viewer.