diff options
Diffstat (limited to 'ipc/mach_msg.h')
-rw-r--r-- | ipc/mach_msg.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ipc/mach_msg.h b/ipc/mach_msg.h index f7d22e3..ce0fe4d 100644 --- a/ipc/mach_msg.h +++ b/ipc/mach_msg.h @@ -40,21 +40,21 @@ #include <mach/message.h> extern mach_msg_return_t -mach_msg_send(/* mach_msg_header_t *, mach_msg_option_t, - mach_msg_size_t, mach_msg_timeout_t, mach_port_t */); +mach_msg_send(mach_msg_header_t *, mach_msg_option_t, + mach_msg_size_t, mach_msg_timeout_t, mach_port_t); extern mach_msg_return_t -mach_msg_receive(/* mach_msg_header_t *, mach_msg_option_t, - mach_msg_size_t, mach_port_t, - mach_msg_timeout_t, mach_port_t */); +mach_msg_receive(mach_msg_header_t *, mach_msg_option_t, + mach_msg_size_t, mach_port_t, + mach_msg_timeout_t, mach_port_t); extern void -mach_msg_receive_continue(); +mach_msg_receive_continue(void); extern void -mach_msg_continue(); +mach_msg_continue(void); extern boolean_t -mach_msg_interrupt(/* thread_t */); +mach_msg_interrupt(thread_t); #endif /* _IPC_MACH_MSG_H_ */ |