bug-hurd
[Top][All Lists]
Advanced

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

[PATCH 7/8] include: add task_set_name


From: Justus Winter
Subject: [PATCH 7/8] include: add task_set_name
Date: Sat, 1 Feb 2014 15:09:27 +0100

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.

* include/mach/gnumach.defs (task_set_name): New procedure.
---
 include/mach/gnumach.defs | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/include/mach/gnumach.defs b/include/mach/gnumach.defs
index 12c4e99..6cfbb0d 100644
--- a/include/mach/gnumach.defs
+++ b/include/mach/gnumach.defs
@@ -27,6 +27,7 @@ subsystem
 
 #include <mach/std_types.defs>
 #include <mach/mach_types.defs>
+#include <mach_debug/mach_debug_types.defs>
 
 type vm_cache_statistics_data_t = struct[11] of integer_t;
 
@@ -63,3 +64,11 @@ simpleroutine thread_terminate_release(
                reply_port      : mach_port_name_t;
                address         : vm_address_t;
                size            : vm_size_t);
+
+/*
+ *     Set the name of task TASK to NAME.  This is a debugging aid.
+ *     NAME will be used in error messages printed by the kernel.
+ */
+simpleroutine task_set_name(
+               task    : task_t;
+               name    : kernel_debug_name_t);
-- 
1.8.5.2




reply via email to

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