mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
gc.c: Fix up default GC params by @csfrancis [fix GH-556]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45393 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
75f44fc33f
commit
23d790e46f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Mar 24 14:14:37 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* gc.c: Fix up default GC params by @csfrancis [fix GH-556]
|
||||
|
||||
Mon Mar 24 13:13:36 2014 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* addr2line.c (parse_debug_line_cu): explicitly specify signed char
|
||||
|
|
2
gc.c
2
gc.c
|
@ -154,8 +154,8 @@ typedef struct {
|
|||
} ruby_gc_params_t;
|
||||
|
||||
static ruby_gc_params_t gc_params = {
|
||||
GC_HEAP_FREE_SLOTS,
|
||||
GC_HEAP_INIT_SLOTS,
|
||||
GC_HEAP_FREE_SLOTS,
|
||||
GC_HEAP_GROWTH_FACTOR,
|
||||
GC_HEAP_GROWTH_MAX_SLOTS,
|
||||
GC_HEAP_OLDOBJECT_LIMIT_FACTOR,
|
||||
|
|
Loading…
Add table
Reference in a new issue