Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.24-rc6 23 lines 449 B view raw
1/* 2 * Definitions for SMTC /proc entries 3 * Copyright(C) 2005 MIPS Technologies Inc. 4 */ 5#ifndef __ASM_SMTC_PROC_H 6#define __ASM_SMTC_PROC_H 7 8/* 9 * per-"CPU" statistics 10 */ 11 12struct smtc_cpu_proc { 13 unsigned long timerints; 14 unsigned long selfipis; 15}; 16 17extern struct smtc_cpu_proc smtc_cpu_stats[NR_CPUS]; 18 19/* Count of number of recoveries of "stolen" FPU access rights on 34K */ 20 21extern atomic_t smtc_fpu_recoveries; 22 23#endif /* __ASM_SMTC_PROC_H */