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

  1. /*
  2.  * i386/univel_svr4/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.  */
  13.  
  14. #ifndef __i386_univel_svr4_jit_md_h
  15. #define __i386_univel_svr4_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 <siginfo.h>
  26. #include <ucontext.h>
  27.  
  28. /* Function prototype for signal handlers */
  29. #define    EXCEPTIONPROTO                            \
  30.     int sig, siginfo_t* sip, ucontext_t* ctx
  31.  
  32. /* Get the first exception frame from a signal handler */
  33. #define    EXCEPTIONFRAME(f, c)                        \
  34.     (f).retbp = (c)->uc_mcontext.gregs[EBP];            \
  35.     (f).retpc = (c)->uc_mcontext.gregs[EIP] + 1
  36.  
  37. #endif
  38.