Re: [PATCH 1/3] kern: implement task_set_name

2014-02-04 Thread Samuel Thibault
Pino Toscano, le Tue 04 Feb 2014 12:57:15 +0100, a écrit : > On Tuesday 04 February 2014 11:01:52 Justus Winter wrote: > > /* > > + * 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. > > +

Re: [PATCH 1/3] kern: implement task_set_name

2014-02-04 Thread Pino Toscano
On Tuesday 04 February 2014 11:01:52 Justus Winter wrote: > /* > + * 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_return_t > +task_set_name( > + task_t

[PATCH 1/3] kern: implement task_set_name

2014-02-04 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 | 17 + kern/task.h | 4 2 files chan