summaryrefslogtreecommitdiff
path: root/crates/arti/src/process.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move SystemConfig to arti::cfgIan Jackson2022-03-211-2/+2
| | | | Fixes #314, #418.
* arti: Make main module entrypoints pubIan Jackson2022-03-111-1/+1
| | | | | This does not constitute any kind of stable API promise. But it might allow people to use our arti client code in novel ways.
* 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.