tokio-rs / loom

Concurrency permutation testing tool for Rust.
MIT License
2.13k stars 111 forks source link

Make thread stack size configurable #310

Closed akonradi closed 1 year ago

akonradi commented 1 year ago

The default value of 4096 bytes is too small for some code. Make the value configurable via the Builder type, with the default value read from the environment variable LOOM_STACK_SIZE, or 4096 if it is not set.

Fixes #309

akonradi commented 1 year ago

Closing this for now in favor of #311