diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-03-22 21:48:26 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-03-22 21:48:26 +0000 |
commit | d3b95d20750a6a2f9d021c17d00f67887373e563 (patch) | |
tree | 5e503297942d768d1d9a34e271972b7678333c0f /hurd | |
parent | a7603ebc8c39a3ab205a007f724b87fcd767b4b5 (diff) |
Formerly process.defs.~71~
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/process.defs | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/hurd/process.defs b/hurd/process.defs index 47aa1f70..d249de68 100644 --- a/hurd/process.defs +++ b/hurd/process.defs @@ -150,10 +150,9 @@ routine proc_setprocargs ( /* INTR */ routine proc_getmsgport ( process: process_t; - other_proces: portarray_t; sreplyport reply_port: reply_port_t; - pid: pid_t; - out msgport: mach_port_t); + pid: pidarray_t; + out msgport: portarray_t); /* Wait for a child process to exit. If pid is zero, it waits for any child. If pid is negative, it waits for any process in the @@ -312,11 +311,17 @@ routine proc_getsid ( out sid: pid_t); /* Get the pgids of all the members of a session. */ -routine proc_getsessionpids ( +routine proc_getsessionpgids ( process: process_t; sid: pid_t; out pgidset: pidarray_t); +/* Get the pids of all the members of a session. */ +routine proc_getsessionpids ( + process: process_t; + sid: pid_t; + out pidset: pidarray_t); + /* Return a "session ID" port for the session of the caller. This port is generally only available to members of the session. (It has no listener, but is useful for identification purposes.) */ |