+
+routine host_request_notification(
+ host : host_t;
+ notify_type : host_flavor_t;
+ notify_port : mach_port_make_send_once_t);
+
+routine host_lockgroup_info(
+ host : host_t;
+ out lockgroup_info : lockgroup_info_array_t,
+ Dealloc);
+
+/*
+ * Return 64-bit statistics from this host.
+ */
+routine host_statistics64(
+ host_priv : host_t;
+ flavor : host_flavor_t;
+ out host_info64_out : host_info64_t, CountInOut);
+
+/*
+ * Returns information about the memory allocation zones.
+ * Data returned is compatible with various caller and kernel
+ * address space sizes (unlike host_zone_info()).
+ */
+routine mach_zone_info(
+ host : host_priv_t;
+ out names : mach_zone_name_array_t,
+ Dealloc;
+ out info : mach_zone_info_array_t,
+ Dealloc);
+
+#ifdef PRIVATE
+/*
+ * Forces a zone allocator garbage collections pass.
+ * Pages with no in-use allocations are returned to
+ * the VM system for re-use.
+ */
+routine mach_zone_force_gc(
+ host : host_t);
+#else
+skip;
+#endif
+
+/*
+ * Create a new voucher by running a series of commands against
+ * <key, previous-voucher> pairs of resource attributes.
+ */
+routine host_create_mach_voucher(
+ host : host_t;
+ recipes : mach_voucher_attr_raw_recipe_array_t;
+ out voucher : ipc_voucher_t);
+
+/*
+ * Register a resource manager with the kernel. A new key is selected.
+ */
+routine host_register_mach_voucher_attr_manager(
+ host : host_t;
+ attr_manager : mach_voucher_attr_manager_t;
+ default_value : mach_voucher_attr_value_handle_t;
+ out new_key : mach_voucher_attr_key_t;
+ out new_attr_control: ipc_voucher_attr_control_t);
+
+/*
+ * Register a resource manager (with a well-known key value) with the kernel.
+ */
+routine host_register_well_known_mach_voucher_attr_manager(
+ host : host_t;
+ attr_manager : mach_voucher_attr_manager_t;
+ default_value : mach_voucher_attr_value_handle_t;
+ key : mach_voucher_attr_key_t;
+ out new_attr_control: ipc_voucher_attr_control_t);
+
+/* vim: set ft=c : */