Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2041 → Rev 2042

/trunk/kernel/test/fpu/mips2.c
122,7 → 122,7
for (i = 0; i < THREADS; i++) {
thread_t *t;
if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1"))) {
if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1", false))) {
printf("could not create thread %d\n", 2 * i);
break;
}
129,7 → 129,7
thread_ready(t);
total++;
if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2"))) {
if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2", false))) {
printf("could not create thread %d\n", 2 * i + 1);
break;
}
/trunk/kernel/test/fpu/fpu1.c
185,7 → 185,7
for (i = 0; i < THREADS; i++) {
thread_t *t;
if (!(t = thread_create(e, NULL, TASK, 0, "e"))) {
if (!(t = thread_create(e, NULL, TASK, 0, "e", false))) {
printf("could not create thread %d\n", 2 * i);
break;
}
192,7 → 192,7
thread_ready(t);
total++;
if (!(t = thread_create(pi, NULL, TASK, 0, "pi"))) {
if (!(t = thread_create(pi, NULL, TASK, 0, "pi", false))) {
printf("could not create thread %d\n", 2 * i + 1);
break;
}
/trunk/kernel/test/fpu/sse1.c
121,7 → 121,7
for (i = 0; i < THREADS; i++) {
thread_t *t;
if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1"))) {
if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1", false))) {
printf("could not create thread %d\n", 2 * i);
break;
}
128,7 → 128,7
thread_ready(t);
total++;
if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2"))) {
if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2", false))) {
printf("could not create thread %d\n", 2 * i + 1);
break;
}