summaryrefslogtreecommitdiff
path: root/reclaim.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2019-01-06 14:11:10 +0300
committerIvan Maidanski <ivmai@mail.ru>2019-01-06 14:11:10 +0300
commit5561f509d7b345fa873b942f8ea1f835beed3510 (patch)
tree3c5ec9a2bfe9d78a55ef93a6514cacd823fa4674 /reclaim.c
parent7bfd2485a449096ce5527e9e92b60259da434b33 (diff)
downloadbdwgc-5561f509d7b345fa873b942f8ea1f835beed3510.tar.gz
Replace "msecs" with "ms" in all comments and messages
* README.md (Bugs): Replace "msecs" with "ms". * doc/README.environment (GC_PAUSE_TIME_TARGET): Likewise. * doc/gcdescr.md (Generational Collection and Dirty Bits): Likewise. * alloc.c [!NO_CLOCK] (full_gc_total_time): Replace "msecs" with "ms" in comment. * cord/tests/de.c [WIN32] (beep): Likewise. * pthread_support.c [USE_SPIN_LOCK] (GC_lock): Likewise. * alloc.c [!GC_DISABLE_INCREMENTAL && !NO_CLOCK] (GC_timeout_stop_func): Replace "msecs" with "ms" in the printed string. * alloc.c [!NO_CLOCK] (GC_try_to_collect_inner, GC_stopped_mark, GC_finish_collection): Likewise. * misc.c [!NO_CLOCK] (GC_dump_named): Likewise. * reclaim.c [!NO_CLOCK] (GC_reclaim_all): Likewise. * tests/test.c [!NO_CLOCK] (check_heap_stats): Likewise.
Diffstat (limited to 'reclaim.c')
-rw-r--r--reclaim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/reclaim.c b/reclaim.c
index b2748ee4..73292b4f 100644
--- a/reclaim.c
+++ b/reclaim.c
@@ -755,7 +755,7 @@ GC_INNER GC_bool GC_reclaim_all(GC_stop_func stop_func, GC_bool ignore_old)
CLOCK_TYPE done_time;
GET_TIME(done_time);
- GC_verbose_log_printf("Disposing of reclaim lists took %lu msecs\n",
+ GC_verbose_log_printf("Disposing of reclaim lists took %lu ms\n",
MS_TIME_DIFF(done_time,start_time));
}
# endif