diff options
author | Ivan Maidanski <ivmai@mail.ru> | 2011-07-26 15:20:24 +0400 |
---|---|---|
committer | Ivan Maidanski <ivmai@mail.ru> | 2011-07-26 15:20:24 +0400 |
commit | c521d2cf164f9d7e1fa8be9c0b21d223e265fa64 (patch) | |
tree | 82fbd7e60e6be39fbabd946717cf065a698cd038 /ptr_chck.c | |
parent | 7d3768dbd2a1cd4d5c14f773f23aec43bc0651a5 (diff) | |
download | bdwgc-c521d2cf164f9d7e1fa8be9c0b21d223e265fa64.tar.gz |
gc4.13 tarball importgc4_13
Diffstat (limited to 'ptr_chck.c')
-rw-r--r-- | ptr_chck.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -196,7 +196,7 @@ void (*GC_is_visible_print_proc) GC_PROTO((GC_PTR p)) = GC_default_is_visible_print_proc; /* Could p be a stack address? */ -bool GC_on_stack(p) +GC_bool GC_on_stack(p) ptr_t p; { # ifdef THREADS @@ -248,7 +248,7 @@ ptr_t p; if (GC_on_stack(p)) return(p); hhdr = HDR((word)p); if (hhdr == 0) { - bool result; + GC_bool result; if (GC_is_static_root(p)) return(p); /* Else do it again correctly: */ |