From 5aa5306ee24e5ad714c875180857a7a96b76bd7c Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Tue, 14 May 1996 17:53:28 +0000 Subject: (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. --- init/init.c | 24 +++++++++++------------- 1 file 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, -- cgit v1.2.3