diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-08 09:22:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-08 09:22:36 +0000 |
commit | db85217fbc77bc5225557e599f18946bd740a42d (patch) | |
tree | 9bddc4d54971be3f841dcaa35222f5565f5653ce /libps/context.c | |
parent | 1ae4089c6d8e646aa83187dfb13d8cd32a47b31d (diff) | |
download | hurd-db85217fbc77bc5225557e599f18946bd740a42d.tar.gz hurd-db85217fbc77bc5225557e599f18946bd740a42d.tar.bz2 hurd-db85217fbc77bc5225557e599f18946bd740a42d.zip |
2002-05-07 Roland McGrath <roland@frob.com>
* context.c (ps_context_find_tty_by_cttyid): int -> mach_port_t
* proclist.c (proc_stat_list_add_all): unsigned -> size_t
(proc_stat_list_add_login_coll): Likewise.
(proc_stat_list_add_session): Likewise.
(proc_stat_list_add_fn_pids): Likewise.
(proc_stat_list_add_id_fn_pids): Likewise.
Diffstat (limited to 'libps/context.c')
-rw-r--r-- | libps/context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libps/context.c b/libps/context.c index a9cab6e7..b8ca102a 100644 --- a/libps/context.c +++ b/libps/context.c @@ -1,6 +1,6 @@ /* The ps_context type, for per-procserver and somewhat global state. - Copyright (C) 1995,96,99,2000 Free Software Foundation, Inc. + Copyright (C) 1995,96,99,2000,02 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.org> @@ -142,7 +142,7 @@ ps_context_find_tty_by_cttyid (struct ps_context *pc, mach_port_t cttyid_port, } else { - int tty_port; + mach_port_t tty_port; error_t err = termctty_open_terminal (cttyid_port, 0, &tty_port); if (err) return err; |