Index: test/mm/falloc2/test.c
===================================================================
--- test/mm/falloc2/test.c	(revision 9bda3af61b1e5c5556bef366d7bcfcbeb1e090a4)
+++ test/mm/falloc2/test.c	(revision ff14c520ac9ef1cfa24af4cbbfd3235d2bda51c5)
@@ -45,10 +45,10 @@
 #define THREADS 8
 
-static void thread(void * arg);
+static void falloc(void * arg);
 static void failed(void);
 
 static atomic_t thread_count;
 
-void thread(void * arg)
+void falloc(void * arg)
 {
 	int status, order, run, allocated, i;
@@ -108,5 +108,5 @@
 	for (i = 0; i < THREADS; i++) {
 		thread_t * thrd;
-		thrd = thread_create(thread, NULL, TASK, 0);
+		thrd = thread_create(falloc, NULL, TASK, 0, "falloc");
 		if (thrd)
 			thread_ready(thrd);
Index: test/mm/slab1/test.c
===================================================================
--- test/mm/slab1/test.c	(revision 9bda3af61b1e5c5556bef366d7bcfcbeb1e090a4)
+++ test/mm/slab1/test.c	(revision ff14c520ac9ef1cfa24af4cbbfd3235d2bda51c5)
@@ -109,5 +109,5 @@
 semaphore_t thr_sem;
 
-static void thread(void *data)
+static void slabtest(void *data)
 {
 	int offs = (int)(__native) data;
@@ -139,5 +139,5 @@
 	semaphore_initialize(&thr_sem,0);
 	for (i=0; i<THREADS; i++) {  
-		if (!(t = thread_create(thread, (void *)(__native)i, TASK, 0)))
+		if (!(t = thread_create(slabtest, (void *)(__native)i, TASK, 0, "slabtest")))
 			panic("could not create thread\n");
 		thread_ready(t);
Index: test/mm/slab2/test.c
===================================================================
--- test/mm/slab2/test.c	(revision 9bda3af61b1e5c5556bef366d7bcfcbeb1e090a4)
+++ test/mm/slab2/test.c	(revision ff14c520ac9ef1cfa24af4cbbfd3235d2bda51c5)
@@ -123,5 +123,5 @@
 #define THREADS 8
 
-static void thread(void *priv)
+static void slabtest(void *priv)
 {
 	void *data=NULL, *new;
@@ -189,5 +189,5 @@
 	semaphore_initialize(&thr_sem,0);
 	for (i=0; i<THREADS; i++) {  
-		if (!(t = thread_create(thread, NULL, TASK, 0)))
+		if (!(t = thread_create(slabtest, NULL, TASK, 0, "slabtest")))
 			panic("could not create thread\n");
 		thread_ready(t);
