summaryrefslogtreecommitdiff
path: root/crates/arti/src/process.rs
Commit message (Collapse)AuthorAgeFilesLines
* 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.