diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-10-30 21:07:55 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-10-30 21:07:55 +0000 |
commit | 4cb232ba0b31db883dc43229ea79f4659b31d7d0 (patch) | |
tree | 61c60a15ed2996a8d8a5e91a8f5182063446fbd7 | |
parent | 727494ba1b79c384d96bf081324a97c1cdfa575a (diff) |
(msg_report_wait): Change second arg to be a real thread_t.
-rw-r--r-- | hurd/msg.defs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hurd/msg.defs b/hurd/msg.defs index 9931b211..af4b76c0 100644 --- a/hurd/msg.defs +++ b/hurd/msg.defs @@ -212,10 +212,9 @@ routine msg_clear_some_exec_flags ( flags: int); /* Return a string describing why THREAD is waiting. (THREAD should - be interpreted as an index into the threads as ordered by the - kernel in task_threads.) If the thread is not waiting, or the reason + be a thread in this task.) If the thread is not waiting, or the reason is unknown, return an empty string. */ routine msg_report_wait ( process: mach_port_t; - thread: int; + thread: thread_t; out wait_reason: string_t); |