diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-31 07:23:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-31 07:23:52 +0000 |
commit | a11b2f6956899f77bbe2e3d09ff2d2a22d15a668 (patch) | |
tree | 9650a5d760ad08aee25d55d83ce985a503339855 | |
parent | 49f10e7c9f1af3f20fe3975e116299c606439cdc (diff) |
(msg_report_wait): Add string out arg.
-rw-r--r-- | hurd/msg.defs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/hurd/msg.defs b/hurd/msg.defs index 29271b80..109cc22e 100644 --- a/hurd/msg.defs +++ b/hurd/msg.defs @@ -211,12 +211,13 @@ routine msg_clear_some_exec_flags ( refport: mach_port_t; flags: int); -/* Return a description of why THREAD is waiting. (THREAD should - be a thread in this task.) If the thread is not waiting, or the reason - is unknown, return zero. WAIT_RPC is the RPC code of the - RPC the thread is waiting on (if it is waiting on an RPC; zero if not.) */ +/* Return a description of why THREAD is waiting. THREAD must + be a thread in this task. If the thread is not waiting, or the reason + is unknown, return zero. WAIT_RPC is the RPC code of the RPC the thread + is waiting on, or zero if it is not blocked in an RPC. */ routine msg_report_wait ( process: mach_port_t; thread: thread_t; + out wait_desc: string_t; out wait_rpc: int); |