pike.git/
src/
gc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2004-01-13
2004-01-13 09:24:18 by Henrik Grubbström (Grubba) <grubba@grubba.org>
f3fa829028c4baa454feeb258b8abd8c0be9ec00 (
9
lines) (+
7
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Potential fix for [bug
3557 (#3557)
].
Rev: src/gc.c:1.238
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: gc.c,v 1.
237
2003
/
09
/
29
19
:
41
:
23
mast
Exp $
+
|| $Id: gc.c,v 1.
238
2004
/
01
/
13
09
:
24
:
18
grubba
Exp $
*/ #include "global.h"
33:
#include "block_alloc.h"
-
RCSID("$Id: gc.c,v 1.
237
2003
/
09
/
29
19
:
41
:
23
mast
Exp $");
+
RCSID("$Id: gc.c,v 1.
238
2004
/
01
/
13
09
:
24
:
18
grubba
Exp $");
int gc_enabled = 1;
1557:
static void exit_gc(void) {
+
if (gc_evaluator_callback) {
+
remove_callback(gc_evaluator_callback);
+
gc_evaluator_callback = NULL;
+
}
#ifdef DEBUG_MALLOC if (!gc_keep_markers) #endif