[DOC] Fix minor miscalculation of stack size

This commit is contained in:
kyontan 2025-03-08 06:18:25 +09:00 committed by GitHub
parent 17f6a68962
commit 3c92fe13f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
Notes: git 2025-03-07 21:18:42 +00:00
Merged: https://github.com/ruby/ruby/pull/12872

Merged-By: XrXr

View File

@ -706,11 +706,11 @@ All values are specified in bytes.
.Bl -hang -compact -width "RUBY_THREAD_MACHINE_STACK_SIZE"
.It Ev RUBY_THREAD_VM_STACK_SIZE
VM stack size used at thread creation.
default: 524288 (32-bit CPU) or 1048575 (64-bit)
default: 524288 (32-bit CPU) or 1048576 (64-bit)
.Pp
.It Ev RUBY_THREAD_MACHINE_STACK_SIZE
Machine stack size used at thread creation.
default: 524288 or 1048575
default: 524288 or 1048576
.Pp
.It Ev RUBY_FIBER_VM_STACK_SIZE
VM stack size used at fiber creation.