home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / KAFFE-0.2 / KAFFE / EXCEPTIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-30  |  482 b   |  24 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 _exception {
  17.     u4    start_pc;
  18.     u4    end_pc;
  19.     u4    handler_pc;
  20.     char*    catch_type;
  21. } exception;
  22.  
  23. #endif
  24.