diff options
Diffstat (limited to 'ipc/ipc_notify.h')
-rw-r--r-- | ipc/ipc_notify.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ipc/ipc_notify.h b/ipc/ipc_notify.h index 60872a9..789bd23 100644 --- a/ipc/ipc_notify.h +++ b/ipc/ipc_notify.h @@ -35,24 +35,24 @@ #define _IPC_IPC_NOTIFY_H_ extern void -ipc_notify_init(); +ipc_notify_init(void); extern void -ipc_notify_port_deleted(/* ipc_port_t, mach_port_t */); +ipc_notify_port_deleted(ipc_port_t, mach_port_t); extern void -ipc_notify_msg_accepted(/* ipc_port_t, mach_port_t */); +ipc_notify_msg_accepted(ipc_port_t, mach_port_t); extern void -ipc_notify_port_destroyed(/* ipc_port_t, ipc_port_t */); +ipc_notify_port_destroyed(ipc_port_t, ipc_port_t); extern void -ipc_notify_no_senders(/* ipc_port_t, mach_port_mscount_t */); +ipc_notify_no_senders(ipc_port_t, mach_port_mscount_t); extern void -ipc_notify_send_once(/* ipc_port_t */); +ipc_notify_send_once(ipc_port_t); extern void -ipc_notify_dead_name(/* ipc_port_t, mach_port_t */); +ipc_notify_dead_name(ipc_port_t, mach_port_t); #endif /* _IPC_IPC_NOTIFY_H_ */ |