promotional, or sales literature without prior written consent from
MIT in each case. */
\f
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/boot.c,v 9.24 1987/02/07 15:23:37 jinx Exp $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/boot.c,v 9.25 1987/02/07 15:29:41 jinx Exp $
*
* This file contains the code to support startup of
* the SCHEME interpreter.
printf("Return code not implemented.\n"); break;
case TERM_NO_SPACE:
printf("Not enough memory.\n"); break;
+ case TERM_SIGNAL:
+ printf("Unhandled signal received.\n"); break;
default: printf("Termination code 0x%x.\n", Err);
}
if ((Trace_On_Error) && (Err != TERM_HALT))
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.22 1987/02/02 15:18:06 jinx Exp $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/errors.h,v 9.23 1987/02/07 15:28:03 jinx Exp $
*
* Error and termination code declarations. This must correspond
* to UTABMD.SCM
#define TERM_COMPILER_DEATH 0x13
#define TERM_GC_OUT_OF_SPACE 0x14
#define TERM_NO_SPACE 0x15
+#define TERM_SIGNAL 0x16