aboutsummaryrefslogtreecommitdiff
path: root/crates/arti/src/process.rs
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade dependency to new version of rlimit.Nick Mathewson2022-02-251-1/+1
|
* Make max_file_limit configurableNeel Chauhan2022-01-281-11/+4
|
* arti: On startup, increase the NOFILE resource limit.Nick Mathewson2021-10-141-0/+25
The default soft limit is typically enough for process usage on most Unixes, but OSX has a pretty low default (256), which you can run into easily under heavy usage. With this patch, we're going to aim for as much as 16384, if we're allowed. Fixes part of #188.