home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / kaffevm / exception.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  755b  |  37 lines

  1. /*
  2.  * exception.h
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #ifndef __exception_h
  14. #define __exception_h
  15.  
  16. typedef struct _jexception {
  17.     u4    start_pc;
  18.     u4    end_pc;
  19.     u4    handler_pc;
  20.     char*    catch_type;
  21. } jexception;
  22.  
  23. struct _exceptionFrame;
  24. struct _object;
  25.  
  26. void        throwException(struct _object*);
  27. void        throwExternalException(struct _object*);
  28. struct _object*    buildStackTrace(struct _exceptionFrame*);
  29.  
  30. #if defined(__WIN32__)
  31. #define SIG_T   void(*)()
  32. #else
  33. #define SIG_T   void*
  34. #endif
  35.  
  36. #endif
  37.