⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 op_arm_model.h

📁 linux-2.6.15.6
💻 H
字号:
/** * @file op_arm_model.h * interface to ARM machine specific operations * * @remark Copyright 2004 Oprofile Authors * @remark Read the file COPYING * * @author Zwane Mwaikambo */#ifndef OP_ARM_MODEL_H#define OP_ARM_MODEL_Hstruct op_arm_model_spec {	int (*init)(void);	unsigned int num_counters;	int (*setup_ctrs)(void);	int (*start)(void);	void (*stop)(void);	char *name;};#ifdef CONFIG_CPU_XSCALEextern struct op_arm_model_spec op_xscale_spec;#endifextern void arm_backtrace(struct pt_regs * const regs, unsigned int depth);extern int __init op_arm_init(struct oprofile_operations *ops, struct op_arm_model_spec *spec);extern void op_arm_exit(void);#endif /* OP_ARM_MODEL_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -