This source file includes following definitions.
- iABI_emulate
1
2
3
4
5
6
7
8
9
10
11 #include <linux/errno.h>
12 #include <linux/sched.h>
13 #include <linux/kernel.h>
14 #include <linux/mm.h>
15 #include <linux/stddef.h>
16 #include <linux/unistd.h>
17 #include <linux/segment.h>
18 #include <linux/ptrace.h>
19
20 #include <asm/segment.h>
21 #include <asm/system.h>
22
23 asmlinkage void iABI_emulate(struct pt_regs * regs)
24 {
25 printk("iBCS2 binaries not supported yet\n");
26 do_exit(SIGSEGV);
27 }