1 #ifndef _SPARC64_KPROBES_H
2 #define _SPARC64_KPROBES_H
4 #include <linux/config.h>
5 #include <linux/types.h>
7 typedef u32 kprobe_opcode_t
;
9 #define BREAKPOINT_INSTRUCTION 0x91d02070 /* ta 0x70 */
10 #define BREAKPOINT_INSTRUCTION_2 0x91d02071 /* ta 0x71 */
11 #define MAX_INSN_SIZE 2
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
)
24 #endif /* _SPARC64_KPROBES_H */