From mboxrd@z Thu Jan 1 00:00:00 1970 From: cmm@sourceware.cygnus.com To: guile-cvs@sourceware.cygnus.com Subject: guile/guile-core/libguile ChangeLog __scm.h gc ... Date: Sun, 21 May 2000 13:49:00 -0000 Message-id: <20000521204920.26240.qmail@sourceware.cygnus.com> X-SW-Source: 2000-q2/msg00237.html List-Id: CVSROOT: /cvs/guile Module name: guile Changes by: cmm@sourceware.cygnus.com 00/05/21 13:49:20 Modified files: guile-core/libguile: ChangeLog __scm.h gc.c gc.h hashtab.c init.c Log message: * gc.h (SCM_[SET_]CELL_{WORD,OBJECT}, SCM_VALIDATE_CELL): brought the yucky, ugly and nasty conditional compilation back. sorry, but it was either that or requiring GAWK to build Guile. removed the code that implemented the old GC scheme. * init.c (scm_boot_guile_1): removed the code conditioned on !GUILE_NEW_GC_SCHEME. * __scm.h: (GUILE_NEW_GC_SCHEME): removed. * gc.c (scm_protect_object, scm_unprotect_object): change the implementation to more efficient (at least in the time complexity sense). the calls should now also be thread-safe -- I suspect that people expect them to be. (thanks to Han-Wen Nienhuys) removed the code that implemented the old GC scheme. * hashtab.c (scm_hash_fn_create_handle_x): add missing SCM_REALLOW_INTS before return.