2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2003 PathScale, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2007-05-06 23:51:24 +02:00
|
|
|
#include "sysdep/ptrace.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-05-06 23:51:24 +02:00
|
|
|
/* These two are from asm-um/uaccess.h and linux/module.h, check them. */
|
|
|
|
struct exception_table_entry
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-05-06 23:51:24 +02:00
|
|
|
unsigned long insn;
|
|
|
|
unsigned long fixup;
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct exception_table_entry *search_exception_tables(unsigned long add);
|
2007-10-16 10:26:58 +02:00
|
|
|
int arch_fixup(unsigned long address, struct uml_pt_regs *regs)
|
2007-05-06 23:51:24 +02:00
|
|
|
{
|
|
|
|
const struct exception_table_entry *fixup;
|
|
|
|
|
|
|
|
fixup = search_exception_tables(address);
|
|
|
|
if(fixup != 0){
|
|
|
|
UPT_IP(regs) = fixup->fixup;
|
|
|
|
return(1);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
return(0);
|
|
|
|
}
|