diff options
Diffstat (limited to 'init/init.c')
-rw-r--r-- | init/init.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/init/init.c b/init/init.c index e2eb3b9b..20eb9471 100644 --- a/init/init.c +++ b/init/init.c @@ -948,14 +948,6 @@ do_mach_notify_msg_accepted (mach_port_t notify, /* msg server */ 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) -{ - return S_msg_sig_post_untraced (msgport, reply, reply_type, signo, refport); -} - -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) @@ -997,6 +989,14 @@ S_msg_sig_post_untraced (mach_port_t msgport, return 0; } +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) +{ + return S_msg_sig_post_untraced (msgport, reply, reply_type, signo, refport); +} + /* For the rest of the msg functions, just call the C library's internal server stubs usually run in the signal thread. */ |