diff options
author | Han-Wen Nienhuys <hanwen@lilypond.org> | 2002-09-05 21:12:21 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@lilypond.org> | 2002-09-05 21:12:21 +0000 |
commit | ffd724008bab4ee230af0a9210b19166b2c04f71 (patch) | |
tree | 1c76aa2025f57bd02b222271f07dfc9f174470b3 /libguile/struct.h | |
parent | 5bd4a949e87dce0abf8d140e2d9f2ca4ce808727 (diff) | |
download | guile-ffd724008bab4ee230af0a9210b19166b2c04f71.tar.gz |
* struct.h: change scm_structs_to_free to scm_i_structs_to_free
* gc-malloc.c (scm_gc_register_collectable_memory): use floats;
these won't ever wrap around with high memory usage.
* gc-malloc.c: add DEBUGINFO for mtrigger GCs.
Diffstat (limited to 'libguile/struct.h')
-rw-r--r-- | libguile/struct.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/struct.h b/libguile/struct.h index 7c784b14d..5e4df9152 100644 --- a/libguile/struct.h +++ b/libguile/struct.h @@ -103,7 +103,7 @@ SCM_API SCM scm_struct_table; #define SCM_STRUCT_GC_CHAIN(X) SCM_CELL_OBJECT_3 (X) #define SCM_SET_STRUCT_GC_CHAIN(X, Y) SCM_SET_CELL_OBJECT_3 (X, Y) -SCM_API SCM scm_structs_to_free; +SCM_API SCM scm_i_structs_to_free; |