Changeset 2a98e58 in mainline
- Timestamp:
- 2007-04-07T18:06:20Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6adbe3c2
- Parents:
- 3dbe2d1f
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/thread/thread1.c
r3dbe2d1f r2a98e58 49 49 while (atomic_get(&finish)) { 50 50 if (!sh_quiet) 51 printf("%d \n", (int) (THREAD->tid));52 thread_usleep(100 );51 printf("%d ", (int) (THREAD->tid)); 52 thread_usleep(100000); 53 53 } 54 54 atomic_inc(&threads_finished); -
uspace/tester/thread/thread1.c
r3dbe2d1f r2a98e58 46 46 while (atomic_get(&finish)) { 47 47 if (!sh_quiet) 48 printf("%d \n", thread_get_id());49 usleep(100 );48 printf("%d ", thread_get_id()); 49 usleep(100000); 50 50 } 51 51 atomic_inc(&threads_finished);
Note:
See TracChangeset
for help on using the changeset viewer.