2 * Copyright 2003 PathScale, Inc.
4 * Licensed under the GPL
7 #include "sysdep/ptrace.h"
9 /* These two are from asm-um/uaccess.h and linux/module.h, check them. */
10 struct exception_table_entry
16 const struct exception_table_entry *search_exception_tables(unsigned long add);
17 int arch_fixup(unsigned long address, union uml_pt_regs *regs)
19 const struct exception_table_entry *fixup;
21 fixup = search_exception_tables(address);
23 UPT_IP(regs) = fixup->fixup;