Changeset 62b6d17 in mainline for kernel/test/fpu
- Timestamp:
- 2006-12-14T16:47:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aeaebcc
- Parents:
- 55cc9bc
- Location:
- kernel/test/fpu
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/fpu/fpu1.c
r55cc9bc r62b6d17 186 186 thread_t *t; 187 187 188 if (!(t = thread_create(e, NULL, TASK, 0, "e" ))) {188 if (!(t = thread_create(e, NULL, TASK, 0, "e", false))) { 189 189 printf("could not create thread %d\n", 2 * i); 190 190 break; … … 193 193 total++; 194 194 195 if (!(t = thread_create(pi, NULL, TASK, 0, "pi" ))) {195 if (!(t = thread_create(pi, NULL, TASK, 0, "pi", false))) { 196 196 printf("could not create thread %d\n", 2 * i + 1); 197 197 break; -
kernel/test/fpu/mips2.c
r55cc9bc r62b6d17 123 123 thread_t *t; 124 124 125 if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1" ))) {125 if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1", false))) { 126 126 printf("could not create thread %d\n", 2 * i); 127 127 break; … … 130 130 total++; 131 131 132 if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2" ))) {132 if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2", false))) { 133 133 printf("could not create thread %d\n", 2 * i + 1); 134 134 break; -
kernel/test/fpu/sse1.c
r55cc9bc r62b6d17 122 122 thread_t *t; 123 123 124 if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1" ))) {124 if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1", false))) { 125 125 printf("could not create thread %d\n", 2 * i); 126 126 break; … … 129 129 total++; 130 130 131 if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2" ))) {131 if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2", false))) { 132 132 printf("could not create thread %d\n", 2 * i + 1); 133 133 break;
Note:
See TracChangeset
for help on using the changeset viewer.