summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-05-14 17:53:28 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-05-14 17:53:28 +0000
commit5aa5306ee24e5ad714c875180857a7a96b76bd7c (patch)
tree0f319ede96dfebbba59852fc6f20f6b511dd450d
parent572f7b786fd43c5ec6123a56d9b441a5738dd990 (diff)
(S_msg_get_exec_flags, S_msg_set_all_exec_flags,
S_msg_set_some_exec_flags, S_msg_clear_some_exec_flags): Delete functions. (S_msg_describe_ports): New function.
-rw-r--r--init/init.c24
1 files changed, 11 insertions, 13 deletions
diff --git a/init/init.c b/init/init.c
index d1d27a4a..e8d1fd2e 100644
--- a/init/init.c
+++ b/init/init.c
@@ -1184,19 +1184,17 @@ S_msg_set_env_variable (mach_port_t process,
boolean_t replace)
{ return _S_msg_set_env_variable (process, refport, variable, value, replace); }
-kern_return_t
-S_msg_get_exec_flags (mach_port_t process, mach_port_t refport, int *flags)
-{ return _S_msg_get_exec_flags (process, refport, flags); }
-kern_return_t
-S_msg_set_all_exec_flags (mach_port_t process, mach_port_t refport, int flags)
-{ return _S_msg_set_all_exec_flags (process, refport, flags); }
-kern_return_t
-S_msg_set_some_exec_flags (mach_port_t process, mach_port_t refport, int flags)
-{ return _S_msg_set_some_exec_flags (process, refport, flags); }
-kern_return_t
-S_msg_clear_some_exec_flags (mach_port_t process, mach_port_t refport,
- int flags)
-{ return _S_msg_clear_some_exec_flags (process, refport, flags); }
+error_t
+S_msg_describe_ports (mach_port_t process,
+ mach_port_t refport,
+ mach_port_array_t names,
+ mach_msg_type_number_t namesCnt,
+ data_t *descriptions,
+ mach_msg_type_number_t descriptionsCnt)
+{
+ return _S_msg_describe_ports (process, refport, names, namesCnt,
+ descriptions, descriptionsCnt);
+}
error_t
S_msg_report_wait (mach_port_t process, thread_t thread,