diff options
-rw-r--r-- | boehm-gc/ChangeLog | 4 | ||||
-rw-r--r-- | boehm-gc/misc.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 538a55c465f..26e0fae9fff 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,7 @@ +2000-03-26 Anthony Green <green@redhat.com> + + * misc.c (GC_enable): Always define GC_enable and GC_disable. + 2000-02-14 Tom Tromey <tromey@cygnus.com> * gc.h (dlopen): Define as GC_dlopen on Linux. diff --git a/boehm-gc/misc.c b/boehm-gc/misc.c index 8c0d0147bf6..60505af16af 100644 --- a/boehm-gc/misc.c +++ b/boehm-gc/misc.c @@ -819,7 +819,6 @@ struct callinfo info[NFRAMES]; #endif /* SAVE_CALL_CHAIN */ -# ifdef SRC_M3 void GC_enable() { GC_dont_gc--; @@ -829,7 +828,6 @@ void GC_disable() { GC_dont_gc++; } -# endif #if !defined(NO_DEBUGGING) |