summaryrefslogtreecommitdiff
path: root/libguile/gdbint.c
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-07-13 15:00:58 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-07-13 15:00:58 +0000
commit406c7d902207af0e25afc6d543e94067bc92bf2b (patch)
treed432dcda1aff044e335d6fe823625423c84ef520 /libguile/gdbint.c
parent2238100586a99880885ac31c146a2397f2d579ff (diff)
downloadguile-406c7d902207af0e25afc6d543e94067bc92bf2b.tar.gz
* Extend checks performed with SCM_DEBUG_CELL_ACCESSES=1 and make them
configurable at run-time. * Replace SCM_FREEP by SCM_FREE_CELL_P and scm_gc_heap_lock by scm_gc_running_p (not in all places yet).
Diffstat (limited to 'libguile/gdbint.c')
-rw-r--r--libguile/gdbint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/gdbint.c b/libguile/gdbint.c
index bc0c73ac5..c2b87d920 100644
--- a/libguile/gdbint.c
+++ b/libguile/gdbint.c
@@ -83,9 +83,9 @@
/* Be carefull when this macro is true.
- scm_gc_heap_lock is set during gc.
+ scm_gc_running_p is set during gc.
*/
-#define SCM_GC_P (scm_gc_heap_lock)
+#define SCM_GC_P (scm_gc_running_p)
/* Macros that encapsulate blocks of code which can be called by the
* debugger.