diff options
author | Richard Braun <rbraun@sceen.net> | 2017-01-24 00:33:55 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-01-24 00:33:55 +0100 |
commit | 01d8174055a1fe4c5914fb9f122099bf6b1d63f4 (patch) | |
tree | fd77b7ec5fae42ea397fe080cb141e90afd64c5b /kern/work.c | |
parent | 5548178e6c7355c250f2d938e7502040c55228a3 (diff) |
kern/thread: add the THREAD_KERNEL_PREFIX macro
This macro is used to build kernel thread names.
Diffstat (limited to 'kern/work.c')
-rw-r--r-- | kern/work.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kern/work.c b/kern/work.c index f3d0848a..59034acc 100644 --- a/kern/work.c +++ b/kern/work.c @@ -419,7 +419,8 @@ work_thread_create(struct work_pool *pool, unsigned int id) if (pool->flags & WORK_PF_GLOBAL) { cpumap = NULL; - snprintf(name, sizeof(name), "x15_work_process/g:%u%s", + snprintf(name, sizeof(name), + THREAD_KERNEL_PREFIX "work_process/g:%u%s", worker->id, suffix); } else { unsigned int pool_id; @@ -433,7 +434,8 @@ work_thread_create(struct work_pool *pool, unsigned int id) pool_id = work_pool_cpu_id(pool); cpumap_zero(cpumap); cpumap_set(cpumap, pool_id); - snprintf(name, sizeof(name), "x15_work_process/%u:%u%s", + snprintf(name, sizeof(name), + THREAD_KERNEL_PREFIX "work_process/%u:%u%s", pool_id, worker->id, suffix); } |