2000-02-22
2000-02-22 21:28:52 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
-
6a9254024bbfdc61265b2f8bcd2ffd1e03bd14aa
(5 lines)
(+3/-2)
[
Show
| Annotate
]
Branch: 7.9
clarification
Rev: src/gc.c:1.48
29:
#include "block_alloc.h"
- RCSID("$Id: gc.c,v 1.47 2000/02/02 22:57:09 hubbe Exp $");
+ RCSID("$Id: gc.c,v 1.48 2000/02/22 21:28:52 hubbe Exp $");
/* Run garbage collect approximate every time we have
* 20 percent of all arrays, objects and programs is
568: Inside #if defined(PIKE_DEBUG)
struct marker *m;
m=get_marker(a);
- if( !(m->flags & GC_REFERENCED) && m->flags & GC_XREFERENCED )
+ if( !(m->flags & GC_REFERENCED) && (m->flags & GC_XREFERENCED))
{
INT32 refs=m->refs;
INT32 xrefs=m->xrefs;