Changeset 6c441cf8 in mainline for kernel/test/fpu
- Timestamp:
- 2008-02-27T11:49:17Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 56976a17
- Parents:
- fdb7795
- Location:
- kernel/test/fpu
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/fpu/fpu1.c
rfdb7795 r6c441cf8 216 216 waitq_wakeup(&can_start, WAKEUP_ALL); 217 217 218 while (atomic_get(&threads_ok) != total) {218 while (atomic_get(&threads_ok) != (long) total) { 219 219 if (!quiet) 220 220 printf("Threads left: %d\n", total - atomic_get(&threads_ok)); -
kernel/test/fpu/mips2.c
rfdb7795 r6c441cf8 152 152 waitq_wakeup(&can_start, WAKEUP_ALL); 153 153 154 while (atomic_get(&threads_ok) != total) {154 while (atomic_get(&threads_ok) != (long) total) { 155 155 if (!quiet) 156 156 printf("Threads left: %d\n", total - atomic_get(&threads_ok)); -
kernel/test/fpu/sse1.c
rfdb7795 r6c441cf8 152 152 waitq_wakeup(&can_start, WAKEUP_ALL); 153 153 154 while (atomic_get(&threads_ok) != total) {154 while (atomic_get(&threads_ok) != (long) total) { 155 155 if (!quiet) 156 156 printf("Threads left: %d\n", total - atomic_get(&threads_ok));
Note:
See TracChangeset
for help on using the changeset viewer.