A Rust library for determining the limits that an operating system enforces on a given particular process.
In its current implementation, this crate allows convenient read of the /proc/<pid>/limits
file on GNU/Linux. On any other platform, the provided methods will return an error so that the
user can decide what to do in the absence of information about limits.
Support for other operating systems and platforms may be added on demand. Feel free to file an issue or make a PR!
```rust use limitsrs::getpid_limits;
// Let's check what the CPU time hard limit is for process 1
.
let limits = getpidlimits(1).unwrap();
let maxcputimehardlimit = limits.maxcputime.hard;
// This will print either:
// - "Some(x)" if there is a limit, where x
is the limit itself.
// - "None" if it is "unlimited".
println!("{}", maxcputimehardlimit);
```
```rust use limitsrs::getpid_limits;
// Let's check what the open files soft limit is for our own process. let limits = getownlimits().unwrap(); let maxopenfilessoftlimit = limits.maxopenfiles.soft;
// This will print either:
// - "Some(x)" if there is a limit, where x
is the limit itself.
// - "None" if it is "unlimited".
println!("{}", maxopenfilessoftlimit);
```
The properties currently tracked by limits-rs::linux::Limits
are:
max_cpu_time
max_file_size
max_data_size
max_stack_size
max_core_file_size
max_resident_set
max_processes
max_open_files
max_locked_memory
max_address_space
max_file_locks
max_pending_signals
max_msgqueue_size
max_nice_priority
max_realtime_priority
max_realtime_timeout
As said before, support for other operating systems and platforms may be added on demand. Feel free to file an issue or make a PR!
Scriptful is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See [LICENSE-APACHE] and [LICENSE-MIT], and [COPYRIGHT] for details.