diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-07 09:26:04 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-07 09:26:04 +0000 |
commit | 65d7e37a7e9c8e7cb0eb098c0fae88b19d51271a (patch) | |
tree | 62e6385000c15623da820409aba1d811e835ec8a | |
parent | 01474942f097c2e5f4c7a6065af83a05a722065a (diff) |
(file_exec): Add dealloc[] flag to most args.
-rw-r--r-- | hurd/fs.defs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/hurd/fs.defs b/hurd/fs.defs index 46646d80..1ce77daa 100644 --- a/hurd/fs.defs +++ b/hurd/fs.defs @@ -38,15 +38,15 @@ INTR_INTERFACE using exec_newtask or exec_loadtask as appropriate. */ routine file_exec ( exec_file: file_t; - exec_task: task_t; + exec_task: mach_port_send_t; flags: int; - argv: data_t; - envp: data_t; - fdarray: portarray_t; - portarray: portarray_t; - intarray: intarray_t; - deallocnames: mach_port_name_array_t; - destroynames: mach_port_name_array_t); + argv: data_t, dealloc[]; + envp: data_t, dealloc[]; + fdarray: portarray_t, dealloc[]; + portarray: portarray_t, dealloc[]; + intarray: intarray_t, dealloc[]; + deallocnames: mach_port_name_array_t, dealloc[]; + destroynames: mach_port_name_array_t, dealloc[]); /* Change owner and/or group */ routine file_chown ( |