mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
fmt
This commit is contained in:
parent
d73d1fee47
commit
81d5e47f40
2 changed files with 7 additions and 3 deletions
|
@ -78,7 +78,11 @@ fn bench_cmd<T: Measurement>(
|
|||
#[cfg(unix)]
|
||||
use rlimit::{setrlimit, Resource};
|
||||
#[cfg(unix)]
|
||||
setrlimit(Resource::STACK, CFOLD_STACK_SIZE as u64, CFOLD_STACK_SIZE as u64)
|
||||
setrlimit(
|
||||
Resource::STACK,
|
||||
CFOLD_STACK_SIZE as u64,
|
||||
CFOLD_STACK_SIZE as u64,
|
||||
)
|
||||
.expect("Failed to increase stack limit.");
|
||||
|
||||
#[cfg(windows)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue