From: Guillermo J. Rozas Date: Sat, 20 Feb 1988 19:34:44 +0000 (+0000) Subject: 1) Patch compiler code interface problem: X-Git-Tag: 20090517-FFI~12896 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=0502bdc46ac03c3e5e2bab8b2ca4ded034b8b482;p=mit-scheme.git 1) Patch compiler code interface problem: Dynamic links were not saved when a procedure was interrupted. The typical symptoms would be that the program would jump to an unpredictable location after a garbage collection. This could cause it do die with almost any signal, typically illegal instruction and segmentation violation. 2) Add a gc counter for debugging purposes. --- diff --git a/v7/src/microcode/version.h b/v7/src/microcode/version.h index 1cc6c9f92..18abad53b 100644 --- a/v7/src/microcode/version.h +++ b/v7/src/microcode/version.h @@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising, 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/Attic/version.h,v 10.22 1988/02/20 06:19:45 jinx Exp $ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/version.h,v 10.23 1988/02/20 19:34:44 jinx Exp $ This file contains version information for the microcode. */ @@ -46,7 +46,7 @@ This file contains version information for the microcode. */ #define VERSION 10 #endif #ifndef SUBVERSION -#define SUBVERSION 22 +#define SUBVERSION 23 #endif #ifndef UCODE_TABLES_FILENAME diff --git a/v8/src/microcode/version.h b/v8/src/microcode/version.h index be6b2ec3a..2fce6d0ad 100644 --- a/v8/src/microcode/version.h +++ b/v8/src/microcode/version.h @@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ -/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/version.h,v 10.22 1988/02/20 06:19:45 jinx Exp $ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/version.h,v 10.23 1988/02/20 19:34:44 jinx Exp $ This file contains version information for the microcode. */ @@ -46,7 +46,7 @@ This file contains version information for the microcode. */ #define VERSION 10 #endif #ifndef SUBVERSION -#define SUBVERSION 22 +#define SUBVERSION 23 #endif #ifndef UCODE_TABLES_FILENAME