diff options
author | Richard Braun <rbraun@sceen.net> | 2013-11-24 11:17:54 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2013-11-24 11:17:54 +0100 |
commit | 22495036a354e209a7f2085bdd2e1fc82895208b (patch) | |
tree | 3feed22ad96e1309f8188cfcef8547eb4ac734fa /kern/thread.h | |
parent | 167804f7e91c8dfc8321299aacd82f831e01ef21 (diff) | |
download | gnumach-22495036a354e209a7f2085bdd2e1fc82895208b.tar.gz gnumach-22495036a354e209a7f2085bdd2e1fc82895208b.tar.bz2 gnumach-22495036a354e209a7f2085bdd2e1fc82895208b.zip |
New RPC for thread destruction
A new call, thread_terminate_release, is added to support self
destruction in threading libraries.
* include/mach/gnumach.defs (thread_terminate_release): New
simpleroutine declaration.
* kern/thread.c: Include vm/vm_user.h and ipc/mach_port.h.
(thread_terminate_release): New function.
* kern/thread.h (thread_terminate_release): New prototype.
Diffstat (limited to 'kern/thread.h')
-rw-r--r-- | kern/thread.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kern/thread.h b/kern/thread.h index 3959dfce..beb2dbc0 100644 --- a/kern/thread.h +++ b/kern/thread.h @@ -259,6 +259,13 @@ extern kern_return_t thread_create( thread_t *child_thread); extern kern_return_t thread_terminate( thread_t thread); +extern kern_return_t thread_terminate_release( + thread_t thread, + task_t task, + mach_port_t thread_name, + mach_port_t reply_port, + vm_offset_t address, + vm_size_t size); extern kern_return_t thread_suspend( thread_t thread); extern kern_return_t thread_resume( |