summaryrefslogtreecommitdiff
path: root/test/test_vm_page_fill.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-01-24 00:33:55 +0100
committerRichard Braun <rbraun@sceen.net>2017-01-24 00:33:55 +0100
commit01d8174055a1fe4c5914fb9f122099bf6b1d63f4 (patch)
treefd77b7ec5fae42ea397fe080cb141e90afd64c5b /test/test_vm_page_fill.c
parent5548178e6c7355c250f2d938e7502040c55228a3 (diff)
kern/thread: add the THREAD_KERNEL_PREFIX macro
This macro is used to build kernel thread names.
Diffstat (limited to 'test/test_vm_page_fill.c')
-rw-r--r--test/test_vm_page_fill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_vm_page_fill.c b/test/test_vm_page_fill.c
index d20fd8ae..55a328b2 100644
--- a/test/test_vm_page_fill.c
+++ b/test/test_vm_page_fill.c
@@ -132,7 +132,7 @@ test_setup(void)
cpumap_zero(&test_cpumap);
cpumap_set(&test_cpumap, cpu_id());
- thread_attr_init(&attr, "x15_test_run");
+ thread_attr_init(&attr, THREAD_KERNEL_PREFIX "test_run");
thread_attr_set_detached(&attr);
thread_attr_set_cpumap(&attr, &test_cpumap);
error = thread_create(&thread, &attr, test_run, NULL);