#include <mach/iocompressionstats_notification_server.h>
mach/iocompressionstats_notification_server.h
macro_iocompressionstats_notification_server_
#define _iocompressionstats_notification_server_
macroiocompressionstats_notification_MSG_COUNT
#define iocompressionstats_notification_MSG_COUNT 1
functioniocompressionstats_notification
extern MIG_SERVER_ROUTINE kern_return_t iocompressionstats_notification( mach_port_t iocompressionstats_port, uint32_t flags )
▾
claude-fable-5, 2026-08-24 · not from Apple sources · verified against xnu osfmk/mach/iocompressionstats_notification.defs, bsd/vfs/vfs_io_compression_stats.c
Server-interface routine of the iocompressionstats_notification MIG subsystem (subsystem id 5600), implemented by a user-space statistics daemon. The kernel sends this one-way message on the registered iocompressionstats port (bsd/vfs/vfs_io_compression_stats.c) when the I/O compression statistics buffer is ready to be collected; flags is currently sent as 0.
functioniocompressionstats_notification_server
extern boolean_t iocompressionstats_notification_server( mach_msg_header_t *InHeadP, mach_msg_header_t *OutHeadP )
▾
claude-fable-5, 2026-08-24 · not from Apple sources · verified against xnu osfmk/mach/iocompressionstats_notification.defs
MIG-generated demultiplexer for the iocompressionstats_notification subsystem (osfmk/mach/iocompressionstats_notification.defs). If the request message at InHeadP belongs to the subsystem, calls the matching handler (iocompressionstats_notification), formats the reply message at OutHeadP, and returns TRUE; returns FALSE, with a MIG_BAD_ID error reply, for messages that do not belong to the subsystem.
functioniocompressionstats_notification_server_routine
extern mig_routine_t iocompressionstats_notification_server_routine( mach_msg_header_t *InHeadP )
▾
claude-fable-5, 2026-08-24 · not from Apple sources · verified against xnu osfmk/mach/iocompressionstats_notification.defs
Returns the MIG dispatch function for the iocompressionstats_notification subsystem request whose msgh_id is found in InHeadP, or a null pointer if the message is not a request of the subsystem. Alternative to the combined demultiplexer for servers that look up and invoke the handler themselves.
structiocompressionstats_notification_subsystem
Description of this subsystem, for use in direct RPC
| mig_server_routine_t | server | Server routine |
| mach_msg_id_t | start | Min routine number |
| mach_msg_id_t | end | Max routine number + 1 |
| unsigned int | maxsize | Max msg size |
| vm_address_t | reserved | Reserved |
| struct routine_descriptor[1] | routine |
variableiocompressionstats_notification_subsystem
extern const struct iocompressionstats_notification_subsystem { mig_server_routine_t server; /* Server routine */ mach_msg_id_t start; /* Min routine number */ mach_msg_id_t end; /* Max routine number + 1 */ unsigned int maxsize; /* Max msg size */ vm_address_t reserved; /* Reserved */ struct routine_descriptor /* Array of routine descriptors */ routine[1]; } iocompressionstats_notification_subsystemmacrosubsystem_to_name_map_iocompressionstats_notification
#define subsystem_to_name_map_iocompressionstats_notification { "iocompressionstats_notification", 5600 }