diff options
author | Roland McGrath <roland@gnu.org> | 1994-06-28 22:48:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-06-28 22:48:03 +0000 |
commit | f0284771044cb5d07a0c5847e60c308f6469d421 (patch) | |
tree | 0469080a53b88e296b0577f6a33d60d4ee0cd8bd | |
parent | 6f505c2d3083c324daa890c7db5969b01ffa48ae (diff) |
Formerly process.defs.~76~
-rw-r--r-- | hurd/process.defs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hurd/process.defs b/hurd/process.defs index a9bd1519..787b5ec6 100644 --- a/hurd/process.defs +++ b/hurd/process.defs @@ -28,8 +28,6 @@ subsystem process 24000; PROCESS_IMPORTS #endif -type reply_port_t = MACH_MSG_TYPE_MAKE_SEND_ONCE | polymorphic - ctype: mach_port_t; /*** Host management ***/ @@ -121,7 +119,7 @@ routine proc_child ( /* Atomically change the message port of a process. */ routine proc_setmsgport ( process: process_t; - sreplyport reply_port: reply_port_t; + sreplyport reply_port: sreply_port_t; newmsgport: mach_port_t; out oldmsgport: mach_port_move_send_t); @@ -171,7 +169,7 @@ routine proc_get_arg_locations ( /* INTR */ routine proc_getmsgport ( process: process_t; - sreplyport reply_port: reply_port_t; + sreplyport reply_port: sreply_port_t; pid: pid_t; out msgport: mach_port_t); @@ -183,7 +181,7 @@ routine proc_getmsgport ( /* INTR */ routine proc_wait ( process: process_t; - sreplyport reply_port: reply_port_t; + sreplyport reply_port: sreply_port_t; pid: pid_t; options: int; out status: int; |