diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-08 09:22:33 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-08 09:22:33 +0000 |
commit | 1ae4089c6d8e646aa83187dfb13d8cd32a47b31d (patch) | |
tree | 7b72a192cb746a608f6e17b1044a1f96af349338 /libps/procstat.c | |
parent | 0a1dd23a7f70dcf0899c37cb21f18b20e38ff598 (diff) | |
download | hurd-1ae4089c6d8e646aa83187dfb13d8cd32a47b31d.tar.gz hurd-1ae4089c6d8e646aa83187dfb13d8cd32a47b31d.tar.bz2 hurd-1ae4089c6d8e646aa83187dfb13d8cd32a47b31d.zip |
2002-05-07 Roland McGrath <roland@frob.com>
* host.c (ps_host_basic_info): int -> size_t
(ps_host_basic_info, ps_host_load_info): Likewise.
* ps.h: Update decls.
(struct proc_stat): unsigned -> size_t for task_events_info_size,
args_len, env_len.
* procstat.c (summarize_thread_waits): Fix argument type.
Diffstat (limited to 'libps/procstat.c')
-rw-r--r-- | libps/procstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libps/procstat.c b/libps/procstat.c index 46058e07..2398de5b 100644 --- a/libps/procstat.c +++ b/libps/procstat.c @@ -492,7 +492,7 @@ summarize_thread_states (struct procinfo *pi) /* Returns what's blocking the first blocked thread in PI in WAIT and RPC. */ static void summarize_thread_waits (struct procinfo *pi, char *waits, size_t waits_len, - char **wait, int *rpc) + char **wait, mach_msg_id_t *rpc) { int i; char *next_wait = waits; |