Skip to content

Commit da65a3d

Browse files
committed
* gc.c (gc_page_sweep): disable debug print.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43875 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 5993c14 commit da65a3d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Wed Nov 27 15:12:55 2013 Koichi Sasada <ko1@atdot.net>
2+
3+
* gc.c (gc_page_sweep): disable debug print.
4+
15
Wed Nov 27 15:05:59 2013 Koichi Sasada <ko1@atdot.net>
26

37
* gc.c (gc_stat): add new information heap_eden_page_length and

gc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2742,7 +2742,7 @@ gc_page_sweep(rb_objspace_t *objspace, rb_heap_t *heap, struct heap_page *sweep_
27422742
heap_pages_final_slots += final_slots;
27432743
sweep_page->final_slots = final_slots;
27442744

2745-
if (1) fprintf(stderr, "gc_page_sweep(%d): freed?: %d, limt: %d, freed_slots: %d, empty_slots: %d, final_slots: %d\n",
2745+
if (0) fprintf(stderr, "gc_page_sweep(%d): freed?: %d, limt: %d, freed_slots: %d, empty_slots: %d, final_slots: %d\n",
27462746
(int)rb_gc_count(),
27472747
final_slots + freed_slots + empty_slots == sweep_page->limit,
27482748
(int)sweep_page->limit, (int)freed_slots, (int)empty_slots, final_slots);

0 commit comments

Comments
 (0)