mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
gc.c: freeze GC::OPTS
* gc.c (Init_GC): freeze GC::OPTS. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
58bd5facb2
commit
1d0fbdb92e
1 changed files with 2 additions and 1 deletions
3
gc.c
3
gc.c
|
@ -7830,7 +7830,7 @@ Init_GC(void)
|
|||
{
|
||||
VALUE opts;
|
||||
rb_define_const(rb_mGC, "OPTS", opts = rb_ary_new());
|
||||
#define OPT(o) if (o) rb_ary_push(opts, rb_str_new2(#o))
|
||||
#define OPT(o) if (o) rb_ary_push(opts, rb_fstring_new(#o, strlen(#o)))
|
||||
OPT(GC_DEBUG);
|
||||
OPT(USE_RGENGC);
|
||||
OPT(RGENGC_DEBUG);
|
||||
|
@ -7845,5 +7845,6 @@ Init_GC(void)
|
|||
OPT(MALLOC_ALLOCATED_SIZE_CHECK);
|
||||
OPT(GC_PROFILE_DETAIL_MEMORY);
|
||||
#undef OPT
|
||||
OBJ_FREEZE(opts);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue