Home
last modified time | relevance | path

Searched refs:dead_task_statistics (Results 1 – 3 of 3) sorted by relevance

/xnu-11215/osfmk/kern/
H A Dhost.c535 tinfo1->task_interrupt_wakeups = dead_task_statistics.task_interrupt_wakeups; in host_statistics()
536 tinfo1->task_platform_idle_wakeups = dead_task_statistics.task_platform_idle_wakeups; in host_statistics()
538 tinfo1->task_timer_wakeups_bin_1 = dead_task_statistics.task_timer_wakeups_bin_1; in host_statistics()
540 tinfo1->task_timer_wakeups_bin_2 = dead_task_statistics.task_timer_wakeups_bin_2; in host_statistics()
542 tinfo1->total_user = dead_task_statistics.total_user_time; in host_statistics()
543 tinfo1->total_system = dead_task_statistics.total_system_time; in host_statistics()
547 tinfo2->gpu_energy.task_gpu_utilisation = dead_task_statistics.task_gpu_ns; in host_statistics()
549 tinfo2->task_energy = dead_task_statistics.task_energy; in host_statistics()
550 tinfo2->task_ptime = dead_task_statistics.total_ptime; in host_statistics()
551 tinfo2->task_pset_switches = dead_task_statistics.total_pset_switches; in host_statistics()
H A Dhost.h107 extern expired_task_statistics_t dead_task_statistics;
H A Dtask.c289 expired_task_statistics_t dead_task_statistics; variable
2182 dead_task_statistics.total_user_time += sum.rtm_user; in task_deallocate_internal()
2183 dead_task_statistics.total_system_time += sum.rtm_system; in task_deallocate_internal()
2185 dead_task_statistics.task_interrupt_wakeups += interrupt_wakeups; in task_deallocate_internal()
2186 dead_task_statistics.task_platform_idle_wakeups += platform_idle_wakeups; in task_deallocate_internal()
2188 dead_task_statistics.task_timer_wakeups_bin_1 += task->task_timer_wakeups_bin_1; in task_deallocate_internal()
2189 dead_task_statistics.task_timer_wakeups_bin_2 += task->task_timer_wakeups_bin_2; in task_deallocate_internal()
2190 dead_task_statistics.total_ptime += p_only.rtm_user + p_only.rtm_system; in task_deallocate_internal()
2191 dead_task_statistics.total_pset_switches += task->ps_switch; in task_deallocate_internal()
2192 dead_task_statistics.task_gpu_ns += task->task_gpu_ns; in task_deallocate_internal()
[all …]