diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-10-23 17:46:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-10-23 17:46:08 +0200 |
commit | 7f9ec18a1fdd1b29a87e407d330461fa13de47b5 (patch) | |
tree | bc798f54f91b9a065d522e72f0b473c080295e97 /libguile/gc.h | |
parent | c38a561f73512bfccac490b91b47ea33be907aa6 (diff) | |
download | guile-7f9ec18a1fdd1b29a87e407d330461fa13de47b5.tar.gz |
Expose `GC_dump ()' at the Scheme level.
* libguile/gc.h (scm_gc_dump): New declaration.
* libguile/gc.c (scm_gc_dump): New function.
Diffstat (limited to 'libguile/gc.h')
-rw-r--r-- | libguile/gc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/gc.h b/libguile/gc.h index 6b3d6a252..4692a4935 100644 --- a/libguile/gc.h +++ b/libguile/gc.h @@ -204,6 +204,7 @@ SCM_API SCM scm_set_debug_cell_accesses_x (SCM flag); SCM_API SCM scm_object_address (SCM obj); SCM_API SCM scm_gc_enable (void); SCM_API SCM scm_gc_disable (void); +SCM_API SCM scm_gc_dump (void); SCM_API SCM scm_gc_stats (void); SCM_API SCM scm_gc_live_object_stats (void); SCM_API SCM scm_gc (void); |