diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-06-17 18:06:18 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-06-17 18:06:18 +0000 |
commit | 734285d90bedbacbeb52145bac3e682a5113956f (patch) | |
tree | f129cc5a1fbf21145fd5e890170c2dcd3998334a /init | |
parent | ce6c97711b2c62f05511b8982e5778dea6fc6967 (diff) |
Include "mung_msg_S.h" instead of "msg_S.h".
(S_msg_sig_post, S_msg_sig_post_untraced): Include SIGCODE parm.
Diffstat (limited to 'init')
-rw-r--r-- | init/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/init/init.c b/init/init.c index 8c4e5135..8b691fe1 100644 --- a/init/init.c +++ b/init/init.c @@ -48,7 +48,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "startup_reply_U.h" #include "startup_S.h" #include "notify_S.h" -#include "msg_S.h" +#include "mung_msg_S.h" /* host_reboot flags for when we crash. */ #define CRASH_FLAGS RB_AUTOBOOT @@ -1314,7 +1314,7 @@ do_mach_notify_msg_accepted (mach_port_t notify, kern_return_t S_msg_sig_post_untraced (mach_port_t msgport, mach_port_t reply, mach_msg_type_name_t reply_type, - int signo, mach_port_t refport) + int signo, int sigcode, mach_port_t refport) { if (refport != mach_task_self ()) return EPERM; @@ -1330,7 +1330,7 @@ S_msg_sig_post_untraced (mach_port_t msgport, kern_return_t S_msg_sig_post (mach_port_t msgport, mach_port_t reply, mach_msg_type_name_t reply_type, - int signo, mach_port_t refport) + int signo, int sigcode, mach_port_t refport) { if (refport != mach_task_self ()) return EPERM; |