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 / sco3.2v5 / jit-md.h next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  41 lines

  1. /*
  2.  * i386/sco3.2v5/jit-md.h
  3.  * Unixware 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.  * and Andrew Stitcher <andrewst@sco.com>, June 1996.
  13.  */
  14.  
  15. #ifndef __i386_sco3_2v5_jit_md_h
  16. #define __i386_sco3_2v5_jit_md_h
  17.  
  18. /**/
  19. /* Include common information. */
  20. /**/
  21. #include "i386/jit.h"
  22.  
  23. /**/
  24. /* Extra exception handling information. */
  25. /**/
  26. #include <siginfo.h>
  27. #include <sys/regset.h>        /* Bug in ucontext.h requires this */
  28. #include <signal.h>        /* Bug in ucontext.h requires this */
  29. #include <ucontext.h>
  30.  
  31. /* Function prototype for signal handlers */
  32. #define    EXCEPTIONPROTO                        \
  33.     int sig, siginfo_t* sip, ucontext_t* ctx
  34.  
  35. /* Get the first exception frame from a signal handler */
  36. #define    EXCEPTIONFRAME(f, c)                    \
  37.     (f).retbp = (c)->uc_mcontext.regs[EBP];            \
  38.     (f).retpc = (c)->uc_mcontext.regs[EIP] + 1
  39.  
  40. #endif
  41.