root/ibcs/emulate.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. iABI_emulate

   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)
     /* [previous][next][first][last][top][bottom][index][help] */
  24 {
  25         printk("iBCS2 binaries not supported yet\n");
  26         do_exit(SIGSEGV);
  27 }

/* [previous][next][first][last][top][bottom][index][help] */