зеркало из https://github.com/github/ruby.git
* gc.c (newobj_slowpath): do not need to use flags hack (commit miss).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52392 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
8ced6af83f
Коммит
a96ae767ac
|
@ -1,3 +1,7 @@
|
|||
Fri Oct 30 19:29:52 2015 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* gc.c (newobj_slowpath): do not need to use flags hack (commit miss).
|
||||
|
||||
Fri Oct 30 19:08:48 2015 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* gc.c (heap_get_freeobj_from_next_freepage): not so UNLIKELY.
|
||||
|
|
2
gc.c
2
gc.c
|
@ -1807,7 +1807,7 @@ newobj_slowpath(VALUE klass, VALUE flags, VALUE v1, VALUE v2, VALUE v3, rb_objsp
|
|||
}
|
||||
|
||||
obj = heap_get_freeobj(objspace, heap_eden);
|
||||
newobj_init(klass, (flags & ~FL_WB_PROTECTED), v1, v2, v3, (flags & FL_WB_PROTECTED) ? TRUE : FALSE, objspace, obj);
|
||||
newobj_init(klass, flags, v1, v2, v3, wb_protected, objspace, obj);
|
||||
gc_event_hook(objspace, RUBY_INTERNAL_EVENT_NEWOBJ, obj);
|
||||
return obj;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче