Home
last modified time | relevance | path

Searched refs:cpu_load_info (Results 1 – 2 of 2) sorted by relevance

/xnu-11215/osfmk/kern/
H A Dhost.c492 host_cpu_load_info_t cpu_load_info; in host_statistics() local
499 MACRO_BEGIN cpu_load_info->cpu_ticks[(state)] += (uint32_t)(ticks / hz_tick_interval); \ in host_statistics()
505 cpu_load_info = (host_cpu_load_info_t)info; in host_statistics()
506 cpu_load_info->cpu_ticks[CPU_STATE_USER] = 0; in host_statistics()
507 cpu_load_info->cpu_ticks[CPU_STATE_SYSTEM] = 0; in host_statistics()
508 cpu_load_info->cpu_ticks[CPU_STATE_IDLE] = 0; in host_statistics()
509 cpu_load_info->cpu_ticks[CPU_STATE_NICE] = 0; in host_statistics()
518 processor_cpu_load_info(processor, cpu_load_info->cpu_ticks); in host_statistics()
H A Dprocessor.c803 processor_cpu_load_info_t cpu_load_info; in processor_info() local
809 cpu_load_info = (processor_cpu_load_info_t) info; in processor_info()
811 cpu_load_info->cpu_ticks[CPU_STATE_SYSTEM] = 0; in processor_info()
812 cpu_load_info->cpu_ticks[CPU_STATE_USER] = 0; in processor_info()
813 cpu_load_info->cpu_ticks[CPU_STATE_IDLE] = 0; in processor_info()
814 processor_cpu_load_info(processor, cpu_load_info->cpu_ticks); in processor_info()
815 cpu_load_info->cpu_ticks[CPU_STATE_NICE] = 0; in processor_info()