Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fc007ddd609ccfce1cd392e65eed05aba8db32ce 17 lines 457 B view raw
1#ifndef __PPC_XMON_H 2#define __PPC_XMON_H 3#ifdef __KERNEL__ 4 5struct pt_regs; 6 7extern void xmon(struct pt_regs *excp); 8extern void xmon_printf(const char *fmt, ...); 9extern void xmon_map_scc(void); 10extern int xmon_bpt(struct pt_regs *regs); 11extern int xmon_sstep(struct pt_regs *regs); 12extern int xmon_iabr_match(struct pt_regs *regs); 13extern int xmon_dabr_match(struct pt_regs *regs); 14extern void (*xmon_fault_handler)(struct pt_regs *regs); 15 16#endif 17#endif