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

/darwin-on-arm/xnu/osfmk/kern/
H A Dhost.h103 extern expired_task_statistics_t dead_task_statistics;
H A Dhost.c449 tinfo->task_interrupt_wakeups = dead_task_statistics.task_interrupt_wakeups;
450 tinfo->task_platform_idle_wakeups = dead_task_statistics.task_platform_idle_wakeups;
452 tinfo->task_timer_wakeups_bin_1 = dead_task_statistics.task_timer_wakeups_bin_1;
453 tinfo->task_timer_wakeups_bin_2 = dead_task_statistics.task_timer_wakeups_bin_2;
455 tinfo->total_user = dead_task_statistics.total_user_time;
456 tinfo->total_system = dead_task_statistics.total_system_time;
H A Dtask.c161 expired_task_statistics_t dead_task_statistics; variable
627 dead_task_statistics.total_user_time += task->total_user_time;
628 dead_task_statistics.total_system_time += task->total_system_time;
630 dead_task_statistics.task_interrupt_wakeups += interrupt_wakeups;
631 dead_task_statistics.task_platform_idle_wakeups += platform_idle_wakeups;
633 dead_task_statistics.task_timer_wakeups_bin_1 += task->task_timer_wakeups_bin_1;
634 dead_task_statistics.task_timer_wakeups_bin_2 += task->task_timer_wakeups_bin_2;

Completed in 14 milliseconds