diff options
author | Hans Boehm <Hans_Boehm@hp.com> | 2004-08-28 00:41:41 +0000 |
---|---|---|
committer | Hans Boehm <hboehm@gcc.gnu.org> | 2004-08-28 00:41:41 +0000 |
commit | 3c1cbf58a609a29362ed15c322d588797f3f4cc5 (patch) | |
tree | 1700d39f175d8dd7078f737fd9bd0459c9a9f3f6 /boehm-gc/include | |
parent | 5dc50f2714548eae49af060e8e03414ed94dcf0c (diff) | |
download | gcc-3c1cbf58a609a29362ed15c322d588797f3f4cc5.zip gcc-3c1cbf58a609a29362ed15c322d588797f3f4cc5.tar.gz gcc-3c1cbf58a609a29362ed15c322d588797f3f4cc5.tar.bz2 |
backgraph.c, gc_priv.h (GC_traverse_back_graph, [...]): split GC_traverse_back_graph.
* backgraph.c, gc_priv.h (GC_traverse_back_graph,
GC_print_back_graph_stats): split GC_traverse_back_graph.
* backgraph.c: Dynamically grow in_progress_space.
* finalize.c (GC_notify_or_invoke_finalizers): also call
GC_print_back_graph_stats.
* alloc.c, finalize.c, gc_priv.h (GC_generate_random_backtrace_no_gc,
GC_print_back_height): Move delarations to header file.
* configure.ac: rename --enable-full-debug to --enable-gc-debug.
* configure: Regenerate.
From-SVN: r86685
Diffstat (limited to 'boehm-gc/include')
-rw-r--r-- | boehm-gc/include/private/gc_priv.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/boehm-gc/include/private/gc_priv.h b/boehm-gc/include/private/gc_priv.h index 08dd8ea..561e403 100644 --- a/boehm-gc/include/private/gc_priv.h +++ b/boehm-gc/include/private/gc_priv.h @@ -1725,6 +1725,13 @@ extern GC_bool GC_print_stats; /* Produce at least some logging output */ #ifdef KEEP_BACK_PTRS extern long GC_backtraces; + void GC_generate_random_backtrace_no_gc(void); +#endif + +extern GC_bool GC_print_back_height; + +#ifdef MAKE_BACK_GRAPH + void GC_print_back_graph_stats(void); #endif /* Macros used for collector internal allocation. */ |