diff options
author | Han-Wen Nienhuys <hanwen@lilypond.org> | 2008-08-21 23:16:20 -0300 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@lilypond.org> | 2008-08-21 23:16:20 -0300 |
commit | 1f5844000e11a4efda65c34fcd9af4e5f152b537 (patch) | |
tree | 05439cff175ec3ab914968256c66ef519fe1b43e /libguile/gc-malloc.c | |
parent | 103dc4d4d297ed7522e36415869f60d81f9cbc5a (diff) | |
download | guile-1f5844000e11a4efda65c34fcd9af4e5f152b537.tar.gz |
Style nitpicks: space before () in function call.
Diffstat (limited to 'libguile/gc-malloc.c')
-rw-r--r-- | libguile/gc-malloc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/gc-malloc.c b/libguile/gc-malloc.c index 4e06f2f69..2f6ea21d8 100644 --- a/libguile/gc-malloc.c +++ b/libguile/gc-malloc.c @@ -119,7 +119,7 @@ scm_realloc (void *mem, size_t size) We don't want these sweep statistics to influence results for cell GC, so we don't collect statistics. - realloc() failed, so we're really desparate to free memory. Run a + realloc () failed, so we're really desparate to free memory. Run a full sweep. */ scm_i_sweep_all_segments ("realloc", NULL); @@ -314,7 +314,7 @@ scm_gc_malloc (size_t size, const char *what) again in scm_gc_register_collectable_memory. We don't really want the second GC since it will not find new garbage. - Note: this is a theoretical peeve. In reality, malloc() never + Note: this is a theoretical peeve. In reality, malloc () never returns NULL. Usually, memory is overcommitted, and when you try to write it the program is killed with signal 11. --hwn */ @@ -342,10 +342,10 @@ scm_gc_realloc (void *mem, size_t old_size, size_t new_size, const char *what) /* - scm_realloc() may invalidate the block pointed to by WHERE, eg. by + scm_realloc () may invalidate the block pointed to by WHERE, eg. by unmapping it from memory or altering the contents. Since - increase_mtrigger() might trigger a GC that would scan - MEM, it is crucial that this call precedes realloc(). + increase_mtrigger () might trigger a GC that would scan + MEM, it is crucial that this call precedes realloc (). */ decrease_mtrigger (old_size, what); |