Added comments and m2_traps.h
This commit is contained in:
parent
6535d32447
commit
8a51ae7b94
15
h/m2_traps.h
15
h/m2_traps.h
|
@ -1,6 +1,9 @@
|
|||
#define M2_TOOLARGE 64
|
||||
#define M2_TOOMANY 65
|
||||
#define M2_NORESULT 66
|
||||
#define M2_UOVFL 67
|
||||
#define M2_FORCH 68
|
||||
#define M2_UUVFL 69
|
||||
/* Modula-2 runtime errors */
|
||||
|
||||
#define M2_TOOLARGE 64 /* stack of process too large */
|
||||
#define M2_TOOMANY 65 /* too many nested traps & handlers */
|
||||
#define M2_NORESULT 66 /* no RETURN from procedure function */
|
||||
#define M2_UOVFL 67 /* cardinal overflow */
|
||||
#define M2_FORCH 68 /* FOR-loop control variable changed */
|
||||
#define M2_UUVFL 69 /* cardinal underflow */
|
||||
#define M2_INTERNAL 70 /* internal error, should not happen */
|
||||
|
|
Loading…
Reference in a new issue