home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / KERNEL-S / V1.0 / LINUX-1.0 / LINUX-1 / linux / ibcs / emulate.c next >
Encoding:
C/C++ Source or Header  |  1994-01-25  |  527 b   |  28 lines

  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("iBCS2 binaries not supported yet\n");
  26.     do_exit(SIGSEGV);
  27. }
  28.