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 / nextstep3 / jit-md.h next >
C/C++ Source or Header  |  1996-09-28  |  853b  |  36 lines

  1. /*
  2.  * i386/nextstep3/jit-md.h
  3.  * NEXTSTEP 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_nextstep3_jit_md_h
  15. #define __i386_nextstep3_jit_md_h
  16.  
  17. /**/
  18. /* Include common information. */
  19. /**/
  20. #include "i386/jit.h"
  21.  
  22. /**/
  23. /* Extra exception handling information. */
  24. /**/
  25.  
  26. /* Function prototype for signal handlers */
  27. #define    EXCEPTIONPROTO                            \
  28.     int sig, int code, struct sigcontext* ctx
  29.  
  30. /* Get the first exception frame from a signal handler */
  31. #define    EXCEPTIONFRAME(f, c)                        \
  32.     (f).retbp = c->sc_ebp;                    \
  33.     (f).retpc = c->sc_eip + 1
  34.  
  35. #endif
  36.