summaryrefslogtreecommitdiff
path: root/kern/thread.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2013-05-12 14:17:44 +0200
committerRichard Braun <rbraun@sceen.net>2013-05-12 14:17:44 +0200
commitb14a30bebd82bfd62fa1e34904982bf86a7b604e (patch)
treeff7642803b0fdb3dcf959034b8732c6629174ff8 /kern/thread.h
parent9d6f40a35b8ced80435454c60475e07f045c1e80 (diff)
kern/thread: update kernel thread naming rules
Diffstat (limited to 'kern/thread.h')
-rw-r--r--kern/thread.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kern/thread.h b/kern/thread.h
index 2671d2dc..be2fcf36 100644
--- a/kern/thread.h
+++ b/kern/thread.h
@@ -24,11 +24,11 @@
* can be used for the normal SCHED_OTHER policy. The idle policy is reserved
* for idling kernel threads.
*
- * By convention, the name of a kernel thread is built by prefixing the
- * kernel name and adding the name of the start function, without the module
- * name ("thread"). Threads that are bound to a processor also include the
- * "/cpu_id" suffix. For example, "x15_balancer/1" is the name of the
- * inter-processor balancing thread of the second processor.
+ * By convention, the name of a kernel thread is built by concatenating the
+ * kernel name and the name of the start function, separated with an underscore.
+ * Threads that are bound to a processor also include the "/cpu_id" suffix.
+ * For example, "x15_thread_balance/1" is the name of the inter-processor
+ * balancer thread of the second processor.
*/
#ifndef _KERN_THREAD_H