RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / oprofile / timer_int.c
blob710a45f0d734430871c21a8731108c483e07f2c5
1 /**
2 * @file timer_int.c
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
7 * @author John Levon <levon@movementarian.org>
8 */
10 #include <linux/kernel.h>
11 #include <linux/notifier.h>
12 #include <linux/smp.h>
13 #include <linux/oprofile.h>
14 #include <linux/profile.h>
15 #include <linux/init.h>
16 #include <asm/ptrace.h>
18 #include "oprof.h"
20 static int timer_notify(struct pt_regs *regs)
22 oprofile_add_sample(regs, 0);
23 return 0;
26 static int timer_start(void)
28 return register_timer_hook(timer_notify);
32 static void timer_stop(void)
34 unregister_timer_hook(timer_notify);
38 void __init oprofile_timer_init(struct oprofile_operations * ops)
40 ops->create_files = NULL;
41 ops->setup = NULL;
42 ops->shutdown = NULL;
43 ops->start = timer_start;
44 ops->stop = timer_stop;
45 ops->cpu_type = "timer";