diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-10-27 19:17:31 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-10-27 19:17:31 +0000 |
commit | 448c89fec9670512148d0363efe749c363eecad5 (patch) | |
tree | c8a1f03505e812bfe7d7af99d5c5fe5aaec0d273 /hurd/fs.defs | |
parent | c27293abb19beb3bdb9a81ebc84ae040401f5a48 (diff) |
(file_exec, file_set_translator): Add SCP to incoming variable sized
arrays.
Diffstat (limited to 'hurd/fs.defs')
-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 52cad43f..7c9eeded 100644 --- a/hurd/fs.defs +++ b/hurd/fs.defs @@ -41,13 +41,13 @@ routine file_exec ( RPT exec_task: task_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 SCP; + envp: data_t SCP; + fdarray: portarray_t SCP; + portarray: portarray_t SCP; + intarray: intarray_t SCP; + deallocnames: mach_port_name_array_t SCP; + destroynames: mach_port_name_array_t SCP); /* Change owner and/or group */ routine file_chown ( @@ -313,7 +313,7 @@ routine file_set_translator ( passive_flags: int; active_flags: int; oldtrans_flags: int; - passive: data_t; + passive: data_t SCP; active: mach_port_send_t); /* Return the stored permanent translator for this file. */ |