diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-06-09 15:12:03 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-06-11 10:31:45 +0200 |
commit | e4b4e64ba7d2679df6508f27ce75d90cba7f5cb5 (patch) | |
tree | 144fda1dc6672134c4749fc6f21e5ae1c5781bd5 | |
parent | b0039d6972f631ca7fdff2379d50ad31c3781a7d (diff) |
kern: set the name of the kernel task to 'gnumach'
* kern/taks.c (task_init): Set the name of the kernel task to 'gnumach'.
-rw-r--r-- | kern/task.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/task.c b/kern/task.c index 66eb25c..20acc6a 100644 --- a/kern/task.c +++ b/kern/task.c @@ -70,6 +70,7 @@ void task_init(void) * for other initialization. (:-() */ (void) task_create(TASK_NULL, FALSE, &kernel_task); + (void) task_set_name(kernel_task, "gnumach"); } kern_return_t task_create( |