pike.git/
src/
gc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2000-08-27
2000-08-27 15:21:50 by Martin Stjernholm <mast@lysator.liu.se>
afa78b5467e02df601f24e284bbd336a367876f7 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Can't call find_marker when the describe functions are used outside
the gc.
Rev: src/gc.c:1.127
30:
#include "block_alloc.h"
-
RCSID("$Id: gc.c,v 1.
126
2000/08/
23
18
:
49
:
45
grubba
Exp $");
+
RCSID("$Id: gc.c,v 1.
127
2000/08/
27
15
:
21
:
50
mast
Exp $");
/* Run garbage collect approximately every time * 20 percent of all arrays, objects and programs is
621:
if(depth<0) return;
-
if ((m = find_marker(a))) {
+
if (
Pike_in_gc &&
(m = find_marker(a))) {
fprintf(stderr,"%*s**Got gc ",indent,""); describe_marker(m); }