Index: kernel/test/fpu/fpu1.c
===================================================================
--- kernel/test/fpu/fpu1.c	(revision 7e13972376409556e7702732a07422be7d7fe16f)
+++ kernel/test/fpu/fpu1.c	(revision aeaebcc155defcfcb8ff9cf60ddacb07fd8e84a7)
@@ -186,5 +186,5 @@
 		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;
@@ -193,5 +193,5 @@
 		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;
Index: kernel/test/fpu/mips2.c
===================================================================
--- kernel/test/fpu/mips2.c	(revision 7e13972376409556e7702732a07422be7d7fe16f)
+++ kernel/test/fpu/mips2.c	(revision aeaebcc155defcfcb8ff9cf60ddacb07fd8e84a7)
@@ -123,5 +123,5 @@
 		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;
@@ -130,5 +130,5 @@
 		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;
Index: kernel/test/fpu/sse1.c
===================================================================
--- kernel/test/fpu/sse1.c	(revision 7e13972376409556e7702732a07422be7d7fe16f)
+++ kernel/test/fpu/sse1.c	(revision aeaebcc155defcfcb8ff9cf60ddacb07fd8e84a7)
@@ -122,5 +122,5 @@
 		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,5 +129,5 @@
 		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;
