mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-08 13:37:35 +02:00
Including type tag in gc debug output for conservatively preserved objects.
This commit is contained in:
parent
422beccc7d
commit
88c283a820
1 changed files with 2 additions and 2 deletions
4
gc.c
4
gc.c
|
@ -242,8 +242,8 @@ void sexp_conservative_mark (sexp ctx) {
|
||||||
if (1) {
|
if (1) {
|
||||||
#if SEXP_USE_DEBUG_GC > 3
|
#if SEXP_USE_DEBUG_GC > 3
|
||||||
if (p && sexp_pointerp(p)) {
|
if (p && sexp_pointerp(p)) {
|
||||||
fprintf(stderr, SEXP_BANNER("MISS: %p: %s"), p,
|
fprintf(stderr, SEXP_BANNER("MISS: %p [%d]: %s"), p,
|
||||||
sexp_pointer_source(p));
|
sexp_pointer_tag(p), sexp_pointer_source(p));
|
||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue