diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/mach_port.c | 2 | ||||
-rw-r--r-- | ipc/mach_rpc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ipc/mach_port.c b/ipc/mach_port.c index 3e5af40..fbc5e69 100644 --- a/ipc/mach_port.c +++ b/ipc/mach_port.c @@ -1457,7 +1457,7 @@ mach_port_set_rpcinfo(space, name, rpc_info, rpc_info_count) int sacts, maxsacts; #endif -sact_count() +void sact_count(void) { printf("%d server activations in use, %d max\n", sacts, maxsacts); } diff --git a/ipc/mach_rpc.c b/ipc/mach_rpc.c index 7f5b2eb..643d0fb 100644 --- a/ipc/mach_rpc.c +++ b/ipc/mach_rpc.c @@ -141,7 +141,7 @@ mach_port_rpc_copy(portp, sact, dact) } kern_return_t -mach_port_rpc_sig(space, name, buffer, buflen) +mach_port_rpc_sig(ipc_space_t space, char *name, char *buffer, unsigned int buflen) { return KERN_FAILURE; } |