rename cpuXXX_t to cpu_XXX_t
[bertos.git] / bertos / kern / proc_test.c
index 414f2115f5213dc28dd49577ea0798f4e2c8a983..ea071a472b2dd226f19f3c048c54ebdbee709e3a 100644 (file)
@@ -66,8 +66,8 @@ static void proc_test2(void)
        }
 }
 
-static cpustack_t proc_test1_stack[CONFIG_KERN_MINSTACKSIZE / sizeof(cpustack_t)];
-static cpustack_t proc_test2_stack[CONFIG_KERN_MINSTACKSIZE / sizeof(cpustack_t)];
+static cpu_stack_t proc_test1_stack[CONFIG_KERN_MINSTACKSIZE / sizeof(cpu_stack_t)];
+static cpu_stack_t proc_test2_stack[CONFIG_KERN_MINSTACKSIZE / sizeof(cpu_stack_t)];
 
 
 /**
@@ -88,7 +88,7 @@ int proc_testRun(void)
        return 0;
 }
 
-#ifdef _TEST
+#if UNIT_TEST
 
 int proc_testSetup(void)
 {