mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* gc.c (is_live_object): A hidden object may be a live object.
[ruby-dev:47788] [Bug #9072] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43539 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7f23534b1f
commit
3ce802b79c
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Nov 5 20:14:32 2013 Masaya Tarui <tarui@ruby-lang.org>
|
||||
|
||||
* gc.c (is_live_object): A hidden object may be a live object.
|
||||
[ruby-dev:47788] [Bug #9072]
|
||||
|
||||
Tue Nov 5 13:37:19 2013 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* gc.c: add support to estimate increase of oldspace memory usage.
|
||||
|
|
1
gc.c
1
gc.c
|
@ -2193,7 +2193,6 @@ is_live_object(rb_objspace_t *objspace, VALUE ptr)
|
|||
case 0: case T_ZOMBIE:
|
||||
return FALSE;
|
||||
}
|
||||
if (RBASIC(ptr)->klass == 0) return FALSE;
|
||||
if (is_dead_object(objspace, ptr)) return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue