mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
extract magic number from gc_sweep_step
This commit is contained in:
parent
fe21b7794a
commit
651b832c1b
Notes:
git
2022-04-01 23:52:40 +09:00
1 changed files with 3 additions and 1 deletions
4
gc.c
4
gc.c
|
@ -954,6 +954,8 @@ struct heap_page {
|
|||
#define GET_HEAP_WB_UNPROTECTED_BITS(x) (&GET_HEAP_PAGE(x)->wb_unprotected_bits[0])
|
||||
#define GET_HEAP_MARKING_BITS(x) (&GET_HEAP_PAGE(x)->marking_bits[0])
|
||||
|
||||
#define GC_SWEEP_PAGES_FREEABLE_PER_STEP 3
|
||||
|
||||
/* Aliases */
|
||||
#define rb_objspace (*rb_objspace_of(GET_VM()))
|
||||
#define rb_objspace_of(vm) ((vm)->objspace)
|
||||
|
@ -5678,7 +5680,7 @@ static int
|
|||
gc_sweep_step(rb_objspace_t *objspace, rb_size_pool_t *size_pool, rb_heap_t *heap)
|
||||
{
|
||||
struct heap_page *sweep_page = heap->sweeping_page;
|
||||
int unlink_limit = 3;
|
||||
int unlink_limit = GC_SWEEP_PAGES_FREEABLE_PER_STEP;
|
||||
|
||||
#if GC_ENABLE_INCREMENTAL_MARK
|
||||
int swept_slots = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue