Could you make a ticket on Redmine and assign to Narihiro Nakamura?
There is issue http://bugs.ruby-lang.org/issues/6006 . I forgot to assign it and set category.
|
authorNari |
* gc.c (HEAP_OBJ_LIMIT, HEAP_BITMAP_LIMIT): HEAP_OBJ_LIMIT used
…
`sizeof(struct heaps_slot)` while heap is currently allocated with `struct heaps_header`. HEAP_BITMAP_LIMIT were calculated from `HEAP_OBJ_LIMIT/sizeof(uintptr_t)` - one Byte for each object, not one Bit. [Bug #6006] patched by Sokolov Yura. ruby#92 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e |
261400e
|
|
authorNari |
* gc.c (assign_heap_slot): SEGV happens cause on 64-bit platform
…
sometime there should be `objs-=2` instead of `objs--`. patched by Sokolov Yura. ruby#92 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e |
64e7aed
|
|
authorNari |
* gc.c (HEAP_OBJ_LIMIT, HEAP_BITMAP_LIMIT): HEAP_OBJ_LIMIT used
…
`sizeof(struct heaps_slot)` while heap is currently allocated with `struct heaps_header`. HEAP_BITMAP_LIMIT were calculated from `HEAP_OBJ_LIMIT/sizeof(uintptr_t)` - one Byte for each object, not one Bit. [Bug #6006] patched by Sokolov Yura. ruby#92 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e |
a862692
|
|
authorNari |
* gc.c (assign_heap_slot): SEGV happens cause on 64-bit platform
…
sometime there should be `objs-=2` instead of `objs--`. patched by Sokolov Yura. ruby#92 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e |
c6a541b
|
...