This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / asm-sparc64 / kprobes.h
1 #ifndef _SPARC64_KPROBES_H
2 #define _SPARC64_KPROBES_H
3
4 #include <linux/config.h>
5 #include <linux/types.h>
6
7 typedef u32 kprobe_opcode_t;
8
9 #define BREAKPOINT_INSTRUCTION   0x91d02070 /* ta 0x70 */
10 #define BREAKPOINT_INSTRUCTION_2 0x91d02071 /* ta 0x71 */
11 #define MAX_INSN_SIZE 2
12
13 #ifdef CONFIG_KPROBES
14 extern int kprobe_exceptions_notify(struct notifier_block *self,
15                                     unsigned long val, void *data);
16 #else                           /* !CONFIG_KPROBES */
17 static inline int kprobe_exceptions_notify(struct notifier_block *self,
18                                            unsigned long val, void *data)
19 {
20         return 0;
21 }
22 #endif
23
24 #endif /* _SPARC64_KPROBES_H */