MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / profile.h
blobacce53fd38b6484416ddc855996c0974bada2e81
1 #ifndef _LINUX_PROFILE_H
2 #define _LINUX_PROFILE_H
4 #ifdef __KERNEL__
6 #include <linux/kernel.h>
7 #include <linux/init.h>
8 #include <linux/cpumask.h>
9 #include <asm/errno.h>
11 #define CPU_PROFILING 1
12 #define SCHED_PROFILING 2
14 struct proc_dir_entry;
15 struct pt_regs;
16 struct notifier_block;
18 /* init basic kernel profiler */
19 void __init profile_init(void);
20 void profile_tick(int);
21 void profile_hit(int, void *);
22 #ifdef CONFIG_PROC_FS
23 void create_prof_cpu_mask(struct proc_dir_entry *);
24 #else
25 #define create_prof_cpu_mask(x) do { (void)(x); } while (0)
26 #endif
28 enum profile_type {
29 PROFILE_TASK_EXIT,
30 PROFILE_MUNMAP
33 #ifdef CONFIG_PROFILING
35 struct task_struct;
36 struct mm_struct;
38 /* task is in do_exit() */
39 void profile_task_exit(struct task_struct * task);
41 /* task is dead, free task struct ? Returns 1 if
42 * the task was taken, 0 if the task should be freed.
44 int profile_handoff_task(struct task_struct * task);
46 /* sys_munmap */
47 void profile_munmap(unsigned long addr);
49 int task_handoff_register(struct notifier_block * n);
50 int task_handoff_unregister(struct notifier_block * n);
52 int profile_event_register(enum profile_type, struct notifier_block * n);
53 int profile_event_unregister(enum profile_type, struct notifier_block * n);
55 int register_timer_hook(int (*hook)(struct pt_regs *));
56 void unregister_timer_hook(int (*hook)(struct pt_regs *));
58 /* Timer based profiling hook */
59 extern int (*timer_hook)(struct pt_regs *);
61 struct pt_regs;
63 #else
65 static inline int task_handoff_register(struct notifier_block * n)
67 return -ENOSYS;
70 static inline int task_handoff_unregister(struct notifier_block * n)
72 return -ENOSYS;
75 static inline int profile_event_register(enum profile_type t, struct notifier_block * n)
77 return -ENOSYS;
80 static inline int profile_event_unregister(enum profile_type t, struct notifier_block * n)
82 return -ENOSYS;
85 #define profile_task_exit(a) do { } while (0)
86 #define profile_handoff_task(a) (0)
87 #define profile_munmap(a) do { } while (0)
89 static inline int register_timer_hook(int (*hook)(struct pt_regs *))
91 return -ENOSYS;
94 static inline void unregister_timer_hook(int (*hook)(struct pt_regs *))
96 return;
99 #endif /* CONFIG_PROFILING */
101 #endif /* __KERNEL__ */
103 #endif /* _LINUX_PROFILE_H */