home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / config / i386 / linux / jit-md.h next >
C/C++ Source or Header  |  1996-09-28  |  925b  |  40 lines

  1. /*
  2.  * i386/linux/jit-md.h
  3.  * Linux i386 JIT configuration information.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, June 1996.
  12.  */
  13.  
  14. #ifndef __i386_linux_jit_md_h
  15. #define __i386_linux_jit_md_h
  16.  
  17. /**/
  18. /* Include common information. */
  19. /**/
  20. #include "i386/jit.h"
  21.  
  22. /**/
  23. /* Extra exception handling information. */
  24. /**/
  25. #include <asm/signal.h>
  26. #if defined(HAVE_ASM_SIGCONTEXT_H)
  27. #include <asm/sigcontext.h>
  28. #endif
  29.  
  30. /* Function prototype for signal handlers */
  31. #define    EXCEPTIONPROTO                            \
  32.     int sig, struct sigcontext_struct ctx
  33.  
  34. /* Get the first exception frame from a signal handler */
  35. #define    EXCEPTIONFRAME(f, c)                        \
  36.     (f).retbp = (c).ebp;                        \
  37.     (f).retpc = (c).eip + 1
  38.  
  39. #endif
  40.