1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

gc.c: use switch for alternative BUILTIN_TYPE

* gc.c (rb_objspace_call_finalizer): BUILTIN_TYPE is alternative,
  T_DATA object (Thread, Mutex, Fiber) cannot be T_FILE.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-11-07 18:10:33 +00:00
parent d24903f063
commit 1062dcf4df

16
gc.c
View file

@ -2116,11 +2116,12 @@ rb_objspace_call_finalizer(rb_objspace_t *objspace)
for (i = 0; i < heap_pages_used; i++) { for (i = 0; i < heap_pages_used; i++) {
p = heap_pages_sorted[i]->start; pend = p + heap_pages_sorted[i]->limit; p = heap_pages_sorted[i]->start; pend = p + heap_pages_sorted[i]->limit;
while (p < pend) { while (p < pend) {
if (BUILTIN_TYPE(p) == T_DATA && switch (BUILTIN_TYPE(p)) {
DATA_PTR(p) && RANY(p)->as.data.dfree && case T_DATA:
!rb_obj_is_thread((VALUE)p) && if (!DATA_PTR(p) || !RANY(p)->as.data.dfree) break;
!rb_obj_is_mutex((VALUE)p) && if (rb_obj_is_thread((VALUE)p)) break;
!rb_obj_is_fiber((VALUE)p)) { if (rb_obj_is_mutex((VALUE)p)) break;
if (rb_obj_is_fiber((VALUE)p)) break;
p->as.free.flags = 0; p->as.free.flags = 0;
if (RTYPEDDATA_P(p)) { if (RTYPEDDATA_P(p)) {
RDATA(p)->dfree = RANY(p)->as.typeddata.type->function.dfree; RDATA(p)->dfree = RANY(p)->as.typeddata.type->function.dfree;
@ -2131,11 +2132,12 @@ rb_objspace_call_finalizer(rb_objspace_t *objspace)
else if (RANY(p)->as.data.dfree) { else if (RANY(p)->as.data.dfree) {
make_deferred(objspace, RANY(p)); make_deferred(objspace, RANY(p));
} }
} break;
else if (BUILTIN_TYPE(p) == T_FILE) { case T_FILE:
if (RANY(p)->as.file.fptr) { if (RANY(p)->as.file.fptr) {
make_io_deferred(objspace, RANY(p)); make_io_deferred(objspace, RANY(p));
} }
break;
} }
p++; p++;
} }