diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 03:59:08 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-07-07 03:59:08 +0000 |
commit | 1a4d8cc113db6acfd97797a4160595e9b5cfc80a (patch) | |
tree | d94886f770faae2bb615bf177bb91d5a0f00af37 | |
parent | e5a6c59f0944ada81db8923ec0822ae84af4e61b (diff) |
(S_msg_sig_post, S_msg_sig_post_untraced): Reverse order of these
definitions.
-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. */ |