diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-10-30 21:19:29 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-10-30 21:19:29 +0000 |
commit | d3d45d2902695b36bdfc8300d555a16850de2a46 (patch) | |
tree | 6630421e11efd2d30c37cd82df25a27534e82d9b /hurd | |
parent | 27444c083091c2da64f753283f563fb4bcb54467 (diff) |
(msg_report_wait): and delete the string parm.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/msg.defs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hurd/msg.defs b/hurd/msg.defs index f702dc6a..29271b80 100644 --- a/hurd/msg.defs +++ b/hurd/msg.defs @@ -211,12 +211,12 @@ routine msg_clear_some_exec_flags ( refport: mach_port_t; flags: int); -/* Return a string describing why THREAD is waiting. (THREAD should +/* 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 an empty string. WAIT_RPC is the RPC code of the + 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.) */ routine msg_report_wait ( process: mach_port_t; thread: thread_t; - out wait_rpc: int; - out wait_reason: string_t); + out wait_rpc: int); + |