Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2041 → Rev 2042

/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;
}