summaryrefslogtreecommitdiff
path: root/src/sys/resource.rs
AgeCommit message (Collapse)Author
2022-03-20uclibc uses a u32 for RLIMIT definitionsRyan Zoeller
2022-03-13Change getrlimit and setrlimit to use rlim_t directly.Arnavion
Fixes #1666
2022-01-24uclibc supportJonah Petri
2021-12-24Add NetBSD configuration for supported process resourcesSachin Cherian
2021-12-20feature-gate most Nix functionsVincent Dagonneau
Using features reduces build time and size for consumer crates. By default all features are enabled.
2021-09-20Lower limits in setrlimit exampleRyan Zoeller
The current value causes the doc test to fail on Fedora 34 for unprivileged users.
2021-09-04Check Dragonfly BSD and OpenBSD in CIAlan Somers
Build, but don't test, for these operating systems. Thanks to @rtzoeller for the tip. Also, fix the OpenBSD build.
2021-09-04Document more thingsAlan Somers
Also, test rustdoc in CI, and demote missing_docs from a deny to a warning (but still deny it in CI).
2021-08-01Add getrlimit and setrlimitLMJW
This work is a continutation on previou contribution by @kpcyrd and @j1ah0ng.