home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / EFFO / pd6.lzh / SRC / error.h < prev    next >
Text File  |  1989-12-21  |  391b  |  26 lines

  1. /*
  2.   C BASED FORTH-83 MULTI-TASKING KERNEL ERROR MANAGEMENT DEFINITIONS
  3.  
  4.   Copyright (c) 1989 by Mikael R.K. Patel
  5.  
  6. */
  7.  
  8.  
  9. /* INCLUDE FILES: SETJUMP */
  10.  
  11. #include <setjmp.h>
  12.  
  13.  
  14. /* WARM RESTART ENVIRONMENT FOR LONGJMP */
  15.  
  16. extern jmp_buf restart;
  17.  
  18.  
  19. /* EXPORTED FUNCTIONS AND PROCEDURES */
  20.  
  21. void error_initiate();
  22. void error_restart();
  23. void error_fatal();
  24. void error_signal();
  25. void error_finish();
  26.