diff options
Diffstat (limited to 'ipc/ipc_print.h')
-rw-r--r-- | ipc/ipc_print.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ipc/ipc_print.h b/ipc/ipc_print.h new file mode 100644 index 0000000..ef676a7 --- /dev/null +++ b/ipc/ipc_print.h @@ -0,0 +1,20 @@ +#ifndef _IPC_PRINT_H_ +#define _IPC_PRINT_H_ + +#if MACH_KDB + +#include <mach/mach_types.h> +#include <mach/message.h> +#include <ipc/ipc_types.h> + +extern void ipc_port_print(ipc_port_t); + +extern void ipc_pset_print(ipc_pset_t); + +extern void ipc_kmsg_print(ipc_kmsg_t); + +extern void ipc_msg_print(mach_msg_header_t*); + +#endif /* MACH_KDB */ + +#endif /* IPC_PRINT_H */ |