Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef _ASM_IA64_EXTABLE_H
2#define _ASM_IA64_EXTABLE_H
3
4#define ARCH_HAS_RELATIVE_EXTABLE
5
6struct exception_table_entry {
7 int insn; /* location-relative address of insn this fixup is for */
8 int fixup; /* location-relative continuation addr.; if bit 2 is set, r9 is set to 0 */
9};
10
11#endif