diff options
author | Peter Zhu <[email protected]> | 2023-08-30 16:49:32 -0400 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2023-08-30 19:37:11 -0400 |
commit | 0aa404b9573d028d87072f40ecb9b86dc161b7ef (patch) | |
tree | a076ccf82c7c58b4835d036101d8ce1a8616096c /man | |
parent | 4aa98b2760944b04b827d6ba4037548a93ef94ff (diff) |
Change heap init environment variable names
This commit changes RUBY_GC_HEAP_INIT_SIZE_{40,80,160,320,640}_SLOTS to
RUBY_GC_HEAP_{0,1,2,3,4}_INIT_SLOTS. This is easier to use because the
user does not need to determine the slot sizes (which can vary between
32 and 64 bit systems). They now just use the heap names
(`GC.stat_heap.keys`).
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8335
Diffstat (limited to 'man')
-rw-r--r-- | man/ruby.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/ruby.1 b/man/ruby.1 index cbd14e0ecc..e62decbf56 100644 --- a/man/ruby.1 +++ b/man/ruby.1 @@ -557,9 +557,9 @@ the following 11 environment variables: .It Ev RUBY_GC_HEAP_INIT_SLOTS Initial allocation slots. Applies to all slot sizes. Introduced in Ruby 2.1, default: 10000. .Pp -.It Ev RUBY_GC_HEAP_INIT_SIZE_%d_SLOTS -Initial allocation of slots in a specific size pool. -The available size pools can be found in `GC.stat_heap`. +.It Ev RUBY_GC_HEAP_%d_INIT_SLOTS +Initial allocation of slots in a specific heap. +The available heaps can be found in the keys of `GC.stat_heap`. Introduced in Ruby 3.3. .Pp .It Ev RUBY_GC_HEAP_FREE_SLOTS |