1 /* 2 * linux/abi/emulate.c 3 * 4 * Copyright (C) 1993 Linus Torvalds 5 */ 6 7 /* 8 * Emulate.c contains the entry point for the 'lcall 7,xxx' handler. 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("lcall 7,xxx: eax = %08lx\n",regs->eax); 26 }