m2_traps.h 639 B

12345678910111213141516
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1990 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. /* Modula-2 runtime errors */
  7. #define M2_TOOLARGE 64 /* stack of process too large */
  8. #define M2_TOOMANY 65 /* too many nested traps & handlers */
  9. #define M2_NORESULT 66 /* no RETURN from procedure function */
  10. #define M2_UOVFL 67 /* cardinal overflow */
  11. #define M2_FORCH 68 /* FOR-loop control variable changed */
  12. #define M2_UUVFL 69 /* cardinal underflow */
  13. #define M2_INTERNAL 70 /* internal error, should not happen */
  14. #define M2_UNIXSIG 71 /* unix signal */