HomeSort by: relevance | last modified time | path
    Searched defs:cpu_counts (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
subr_cpu.c 84 int64_t cpu_counts[CPU_COUNT_MAX]; variable in typeref:typename:int64_t[]
498 KASSERT(sizeof(ci->ci_counts) == sizeof(cpu_counts));
501 memcpy(cpu_counts, curcpu()->ci_counts, sizeof(cpu_counts));
527 memcpy(cpu_counts, sum, sizeof(cpu_counts));
  /src/sys/sys/
cpu_data.h 191 int64_t cpu_counts[CPU_COUNT_MAX];/* per-CPU counts */ member in struct:cpu_data
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[];
260 return cpu_counts[idx]
    [all...]

Completed in 12 milliseconds