Changes in uspace/app/tester/thread/thread1.c [d5c1051:582a0b8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/thread/thread1.c
rd5c1051 r582a0b8 32 32 33 33 #include <atomic.h> 34 #include <errno.h>35 34 #include <thread.h> 36 35 #include <stdio.h> … … 62 61 TPRINTF("Creating threads"); 63 62 for (i = 0; i < THREADS; i++) { 64 if (thread_create(threadtest, NULL, "threadtest", NULL) != EOK) {63 if (thread_create(threadtest, NULL, "threadtest", NULL) < 0) { 65 64 TPRINTF("\nCould not create thread %u\n", i); 66 65 break;
Note:
See TracChangeset
for help on using the changeset viewer.