bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Pino Toscano
Subject: Re: [PATCH 1/3] kern: implement task_set_name
Date: Tue, 04 Feb 2014 12:57:15 +0100
User-agent: KMail/4.11.5 (Linux/3.12.8-200.fc19.x86_64; KDE/4.11.5; x86_64; ; )

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                  task,
> +     kernel_debug_name_t     name)
> +{
> +     strncpy(task->name, name, sizeof task->name - 1);
> +     task->name[sizeof task->name - 1] = '\0';
> +     return KERN_SUCCESS;
> +}

Would it be possible to add task_get_name too, so we can implement 
pthread_{get,set}name_np in libpthread?

Thanks!
-- 
Pino Toscano



reply via email to

[Prev in Thread] Current Thread [Next in Thread]