* gc.c (gc_marks): fix wrong option. FALSE means major/full GC.
It should be TRUE (minor marking). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41452 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
206b28ca15
commit
21b0705c18
@ -1,3 +1,8 @@
|
|||||||
|
Thu Jun 20 05:08:53 2013 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* gc.c (gc_marks): fix wrong option. FALSE means major/full GC.
|
||||||
|
It should be TRUE (minor marking).
|
||||||
|
|
||||||
Thu Jun 20 02:44:45 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Thu Jun 20 02:44:45 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* win32/win32.c (waitpid): should not return 0 but wait until exit
|
* win32/win32.c (waitpid): should not return 0 but wait until exit
|
||||||
|
2
gc.c
2
gc.c
@ -3634,7 +3634,7 @@ gc_marks(rb_objspace_t *objspace, int minor_gc)
|
|||||||
gc_free_stored_bitmaps(objspace, before_mark_stored_bitmaps);
|
gc_free_stored_bitmaps(objspace, before_mark_stored_bitmaps);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
gc_marks_body(objspace, th, FALSE);
|
gc_marks_body(objspace, th, TRUE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user