summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-11 18:26:00 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-11 18:26:00 +0000
commit86b2e9d090e9a614400d2ca6f0d24ee5698ad1dd (patch)
treee523cea1a95d96c7d9889b9983e30349420e8ede
parent9d70a17541782493c7cf5d0dceafadccc2424bd8 (diff)
* vm_method.c (rb_gc_mark_unlinked_live_method_entries):
revert last commit to introduce debug prints. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43262 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--vm_method.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d02cd657e..943af618bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Oct 12 03:24:49 2013 Koichi Sasada <ko1@atdot.net>
+
+ * vm_method.c (rb_gc_mark_unlinked_live_method_entries):
+ revert last commit to introduce debug prints.
+
Fri Oct 11 21:05:19 2013 Koichi Sasada <ko1@atdot.net>
* internal.h, parse.y: use `full_mark' instead of `full_marking'.
diff --git a/vm_method.c b/vm_method.c
index 749f7d66c7..0066c17c8a 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -105,15 +105,13 @@ rb_gc_mark_unlinked_live_method_entries(void *pvm)
{
rb_vm_t *vm = pvm;
struct unlinked_method_entry_list_entry *ume = vm->unlinked_method_entry_list;
- int i=0;
while (ume) {
if (ume->me->mark) {
rb_mark_method_entry(ume->me);
}
- ume = ume->next; i++;
+ ume = ume->next;
}
- fprintf(stderr, "rb_gc_mark_unlinked_live_method_entries: %d entries\n", i);
}
void