Changeset 201abde in mainline for uspace/tester/thread/thread1.c
- Timestamp:
- 2007-04-07T20:06:52Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7e58979
- Parents:
- 6adbe3c2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/tester/thread/thread1.c
r6adbe3c2 r201abde 46 46 while (atomic_get(&finish)) { 47 47 if (!sh_quiet) 48 printf("% d", thread_get_id());48 printf("%llu ", thread_get_id()); 49 49 usleep(100000); 50 50 } … … 61 61 62 62 for (i = 0; i < THREADS; i++) { 63 int t; 64 if ((t = thread_create(threadtest, NULL, "threadtest")) < 0) { 63 if (thread_create(threadtest, NULL, "threadtest", NULL) < 0) { 65 64 if (!quiet) 66 65 printf("Could not create thread %d\n", i);
Note:
See TracChangeset
for help on using the changeset viewer.