Re: [PATCH 6/8] kern: implement task_set_name

2014-02-01 Thread Samuel Thibault
Justus Winter, le Sat 01 Feb 2014 15:09:26 +0100, a écrit : > @@ -1071,6 +1072,21 @@ task_priority( > } > > /* > + * task_set_name > + * > + * Set the name of task TASK to NAME. This is a debugging aid. > + * NAME will be used in error messages printed by the kernel. > + */ > +kern_retur

[PATCH 6/8] kern: implement task_set_name

2014-02-01 Thread Justus Winter
task_set_name sets the name of a task. This is a debugging aid. The name will be used in error messages printed by the kernel. * kern/task.c (task_set_name): New function. * kern/task.h (task_set_name): New declaration. --- kern/task.c | 16 kern/task.h | 4 2 files chang