diff options
author | Roland McGrath <roland@gnu.org> | 1994-06-24 07:55:57 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-06-24 07:55:57 +0000 |
commit | 06b8c74474a77d03f9e3fca55b3fc7c97fb319e9 (patch) | |
tree | da8167a0d2c38e23202739580a72570fd60dcee8 /hurd | |
parent | 0dcd2bff9af6b15abceb3df0a8b9940cc369dc70 (diff) |
Formerly process.defs.~75~
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/process.defs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/hurd/process.defs b/hurd/process.defs index f69516b4..a9bd1519 100644 --- a/hurd/process.defs +++ b/hurd/process.defs @@ -154,10 +154,18 @@ routine proc_getpids ( out ppid: pid_t; out orphaned: int); -routine proc_setprocargs ( +/* Set the locations of ARGV and ENVP which will be examined + by proc_getprocargs and proc_getprocenv. */ +routine proc_set_arg_locations ( process: process_t; - argv: int; - envp: int); + argv: vm_address_t; + envp: vm_address_t); + +/* Fetch the locations set by proc_set_arg_locations. */ +routine proc_get_arg_locations ( + process: process_t; + out argv: vm_address_t; + out envp: vm_address_t); /* Fetch the message ports of a set of processes */ /* INTR */ |