klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

commit 206e48f43dab4ae854a6d3024b42923e707466bf
parent 5c14a3ecf31143f514741fd9fce317fc21fde3cb
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Wed, 20 Apr 2011 03:02:20 -0300

Disabled gc until the bug is found out.

Diffstat:
Msrc/klispconf.h | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/klispconf.h b/src/klispconf.h @@ -13,8 +13,10 @@ #include <stdint.h> #include <stdbool.h> +/* XXX: disable the gc till the bug is removed + (throws a weird error after running (load "tests/test-all.k") twice */ /* temp defines till gc is stabilized */ -#define KUSE_GC 1 +/* #define KUSE_GC 1 */ /* Print msgs when starting and ending gc */ #define KDEBUG_GC 1