Changeset cd8ad52 in mainline for kernel/test/fpu/mips2.c
- Timestamp:
- 2008-06-03T14:58:05Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b63f8569
- Parents:
- 7ac426e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/fpu/mips2.c
r7ac426e rcd8ad52 73 73 if (arg != after_arg) { 74 74 if (!sh_quiet) 75 printf("General reg tid% llu: arg(%d) != %d\n", THREAD->tid, arg, after_arg);75 printf("General reg tid%" PRIu64 ": arg(%d) != %d\n", THREAD->tid, arg, after_arg); 76 76 atomic_inc(&threads_fault); 77 77 break; … … 105 105 if (arg != after_arg) { 106 106 if (!sh_quiet) 107 printf("General reg tid% llu: arg(%d) != %d\n", THREAD->tid, arg, after_arg);107 printf("General reg tid%" PRIu64 ": arg(%d) != %d\n", THREAD->tid, arg, after_arg); 108 108 atomic_inc(&threads_fault); 109 109 break; … … 124 124 125 125 if (!quiet) 126 printf("Creating % dthreads... ", 2 * THREADS);126 printf("Creating %u threads... ", 2 * THREADS); 127 127 128 128 for (i = 0; i < THREADS; i++) { … … 131 131 if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1", false))) { 132 132 if (!quiet) 133 printf("could not create thread % d\n", 2 * i);133 printf("could not create thread %u\n", 2 * i); 134 134 break; 135 135 } … … 139 139 if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2", false))) { 140 140 if (!quiet) 141 printf("could not create thread % d\n", 2 * i + 1);141 printf("could not create thread %u\n", 2 * i + 1); 142 142 break; 143 143 }
Note:
See TracChangeset
for help on using the changeset viewer.