Home
last modified time | relevance | path

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

/netbsd-src/sys/sys/
H A Dcpu_data.h191 int64_t cpu_counts[CPU_COUNT_MAX];/* per-CPU counts */ member
224 #define ci_counts ci_data.cpu_counts
231 #define cpu_nsyscall cpu_counts[CPU_COUNT_NSYSCALL]
232 #define cpu_ntrap cpu_counts[CPU_COUNT_NTRAP]
233 #define cpu_nswtch cpu_counts[CPU_COUNT_NSWTCH]
234 #define cpu_nintr cpu_counts[CPU_COUNT_NINTR]
235 #define cpu_nsoft cpu_counts[CPU_COUNT_NSOFT]
236 #define cpu_nfault cpu_counts[CPU_COUNT_NFAULT]
259 extern int64_t cpu_counts[]; in cpu_count_get()
260 return cpu_counts[idx]; in cpu_count_get()
/netbsd-src/sys/kern/
H A Dsubr_cpu.c84 int64_t cpu_counts[CPU_COUNT_MAX]; variable
498 KASSERT(sizeof(ci->ci_counts) == sizeof(cpu_counts)); in cpu_count_sync()
501 memcpy(cpu_counts, curcpu()->ci_counts, sizeof(cpu_counts)); in cpu_count_sync()
527 memcpy(cpu_counts, sum, sizeof(cpu_counts)); in cpu_count_sync()