Index: test/thread/thread1/test.c
===================================================================
--- test/thread/thread1/test.c	(revision dc747e33f6f5d74c7d1b7b50fda3b2fabff8fa82)
+++ test/thread/thread1/test.c	(revision 226a6541a5d20f6b543c006e6e2759ad76affadb)
@@ -40,5 +40,5 @@
 #define THREADS 5
 
-static void thread(void *data)
+static void threadtest(void *data)
 {
     while(1)
@@ -55,5 +55,5 @@
 
 	for (i=0; i<THREADS; i++) {  
-		if (!(t = thread_create(thread, NULL, TASK, 0)))
+		if (!(t = thread_create(threadtest, NULL, TASK, 0, "threadtest")))
 			panic("could not create thread\n");
 		thread_ready(t);
