promotional, or sales literature without prior written consent from
MIT in each case. */
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/errors.h,v 9.27 1987/12/04 22:15:36 jinx Exp $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/errors.h,v 9.28 1987/12/13 21:59:11 cph Rel $
*
* Error and termination code declarations.
*
#define TERM_NO_SPACE 0x15
#define TERM_SIGNAL 0x16
#define TERM_TOUCH 0x17
+#define TERM_SAVE_AND_EXIT 0x18
/*
If you add any termination codes here, remember to add them to
storage.c as well.
*/
-#define MAX_TERMINATION 0x17
+#define MAX_TERMINATION 0x18
promotional, or sales literature without prior written consent from
MIT in each case. */
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/storage.c,v 9.39 1987/12/04 22:19:35 jinx Exp $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/storage.c,v 9.40 1987/12/13 21:59:30 cph Rel $
This file defines the storage for global variables for
the Scheme Interpreter. */
/* 0x14 */ "GC-OUT-OF-SPACE",
/* 0x15 */ "NO-SPACE",
/* 0x16 */ "SIGNAL",
-/* 0x17 */ "TOUCH"
+/* 0x17 */ "TOUCH",
+/* 0x18 */ "SAVE-AND-EXIT"
};
/* If you change this table, change the Term_Messages table below as well. */
-#if (MAX_TERMINATION != 0x17)
+#if (MAX_TERMINATION != 0x18)
/* Cause an error */
#include "Inconsistency: errors.h and storage.c (Termination code table)"
#endif
/* 0x14 */ "Out of space after garbage collection",
/* 0x15 */ "Out of memory: Available memory exceeded",
/* 0x16 */ "Unhandled signal received",
-/* 0x17 */ "Touch without futures support"
+/* 0x17 */ "Touch without futures support",
+/* 0x18 */ "Halt requested by external source"
};