1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _LINUX_SCHED_STAT_H 3 #define _LINUX_SCHED_STAT_H 4 5 #include <linux/percpu.h> 6 7 /* 8 * Various counters maintained by the scheduler and fork(), 9 * exposed via /proc, sys.c or used by drivers via these APIs. 10 * 11 * ( Note that all these values are acquired without locking, 12 * so they can only be relied on in narrow circumstances. ) 13 */ 14 15 extern unsigned long total_forks; 16 extern int nr_threads; 17 DECLARE_PER_CPU(unsigned long, process_counts); 18 extern int nr_processes(void); 19 extern unsigned long nr_running(void); 20 extern bool single_task_running(void); 21 extern unsigned long nr_iowait(void); 22 extern unsigned long nr_iowait_cpu(int cpu); 23 24 #ifdef CONFIG_SCHED_WALT 25 extern unsigned int sched_get_cpu_util(int cpu); 26 #else sched_get_cpu_util(int cpu)27static inline unsigned int sched_get_cpu_util(int cpu) 28 { 29 return 0; 30 } 31 #endif 32 sched_info_on(void)33static inline int sched_info_on(void) 34 { 35 #ifdef CONFIG_SCHEDSTATS 36 return 1; 37 #elif defined(CONFIG_TASK_DELAY_ACCT) 38 extern int delayacct_on; 39 return delayacct_on; 40 #else 41 return 0; 42 #endif 43 } 44 45 #ifdef CONFIG_SCHEDSTATS 46 void force_schedstat_enabled(void); 47 #endif 48 49 #endif /* _LINUX_SCHED_STAT_H */ 50