diff options
author | Han-Wen Nienhuys <hanwen@lilypond.org> | 2002-08-21 22:40:03 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@lilypond.org> | 2002-08-21 22:40:03 +0000 |
commit | f2893a253e7597363c5f6d2ee1c07aa64130154f (patch) | |
tree | bdd3529bbc9f84aa9100ef3150f909716da85fd2 /libguile/gc.h | |
parent | 483f518bd4112f0c5069e5f7a8d6b65e9fe9c6d4 (diff) | |
download | guile-f2893a253e7597363c5f6d2ee1c07aa64130154f.tar.gz |
make scm_cells_allocated unsigned again. Thanks to
Bill Schottstaedt for the bug report
Diffstat (limited to 'libguile/gc.h')
-rw-r--r-- | libguile/gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gc.h b/libguile/gc.h index f0f89b7f7..7388d5e42 100644 --- a/libguile/gc.h +++ b/libguile/gc.h @@ -290,7 +290,7 @@ SCM_API unsigned long scm_gc_cells_collected; SCM_API unsigned long scm_gc_cells_collected; SCM_API unsigned long scm_gc_malloc_collected; SCM_API unsigned long scm_gc_ports_collected; -SCM_API long scm_cells_allocated; +SCM_API unsigned long scm_cells_allocated; SCM_API int scm_gc_cell_yield_percentage; SCM_API int scm_gc_malloc_yield_percentage; SCM_API unsigned long scm_mallocated; |