diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2024-07-11 23:36:39 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-07-14 20:20:40 +0200 |
commit | a40012115277aeff07ff92abab652b996be3c9cf (patch) | |
tree | 2551c0347a5c81350f3415e5260a4a12993c4272 /include | |
parent | c8567996129024d3ea0b6a31635bbb1d77e6e29c (diff) | |
download | gnumach-a40012115277aeff07ff92abab652b996be3c9cf.tar.gz gnumach-a40012115277aeff07ff92abab652b996be3c9cf.tar.bz2 gnumach-a40012115277aeff07ff92abab652b996be3c9cf.zip |
Add thread_get_name RPC to get the name of a thread.
Message-ID: <6qm4fdtthi5nrmmleum7z2xemxz77adohed454eaeuzlmvfx4d@l3pyff4tqwry>
Diffstat (limited to 'include')
-rw-r--r-- | include/mach/gnumach.defs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/mach/gnumach.defs b/include/mach/gnumach.defs index 7ecf74d3..f13e866b 100644 --- a/include/mach/gnumach.defs +++ b/include/mach/gnumach.defs @@ -215,3 +215,11 @@ routine vm_pages_phys( simpleroutine thread_set_name( thread : thread_t; name : kernel_debug_name_t); + +/* + * Get the name of thread THREAD as set by thread_set_name. Will return + * the name of the task if no THREAD name is set. + */ +routine thread_get_name( + thread : thread_t; + out name : kernel_debug_name_t); |