Structure - Used to present basic information about a host.
struct host_basic_info { integer_t max_cpus; integer_t avail_cpus; vm_size_t memory_size; cpu_type_t cpu_type; cpu_subtype_t cpu_subtype; cpu_threadtype_t cpu_threadtype; integer_t physical_cpu; integer_t physical_cpu_max; integer_t logical_cpu; integer_t logical_cpu_max; uint64_t max_mem; }; typedef struct host_basic_info* host_basic_info_t;
The host_basic_info structure defines the basic information available about a host.
This structure is machine word length specific because of the memory size returned.
Functions: host_info.
Data Structures: host_load_info, host_sched_info.