Changeset 62b6d17 in mainline for kernel/test/fpu/fpu1.c
- Timestamp:
- 2006-12-14T16:47:36Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aeaebcc
- Parents:
- 55cc9bc
- File:
-
- 1 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;
Note:
See TracChangeset
for help on using the changeset viewer.