#linux

prctl

This package provides safe abstraction to the linux prctl() interface. Some functions may be architecture-specific.

6 releases (1 stable)

Uses old Rust 2015

1.0.0 Oct 13, 2015
0.2.0 Feb 24, 2015
0.1.1 Feb 8, 2015
0.1.0 Jan 11, 2015
0.0.2 Dec 14, 2014

#626 in Text processing

Download history 33864/week @ 2023-10-24 31291/week @ 2023-10-31 39105/week @ 2023-11-07 47689/week @ 2023-11-14 26223/week @ 2023-11-21 23301/week @ 2023-11-28 24387/week @ 2023-12-05 26316/week @ 2023-12-12 19421/week @ 2023-12-19 14619/week @ 2023-12-26 24077/week @ 2024-01-02 50738/week @ 2024-01-09 44581/week @ 2024-01-16 36814/week @ 2024-01-23 38151/week @ 2024-01-30 29280/week @ 2024-02-06

158,359 downloads per month
Used in 10 crates (7 directly)

MIT license

21KB
549 lines

prctl

Rust library providing the prctl abstraction

Module provides safe abstraction over the prctl interface. Provided functions map to a single prctl() call, although some of them may be usable only on a specific architecture or only with root privileges. All known enums that may be used as parameters are provided in this crate.

Each function provides result which will be Err(errno) in case the prctl() call fails.

To run tests requiring root privileges, enable feature "root_test".

Usage

Most functions set/get flags or set/get options. They can be used in the following way:

// Allow core dumping
!try(prctl::set_dumpable(true));

// Get current timer slack
let slack = !try(prctl::get_timer_slack());

// Send signal 6 after dying
!try(prctl::set_death_signal(6));

// Set current process name
!try(prctl::set_name("new_process"));

// Disable access to the timestamp counter
use prctl::PrctlTsc;
!try(prctl::set_tsc(PrctlTsc::PR_TSC_SIGSEGV));

lib.rs:

Module provides safe abstraction over the prctl interface. Provided functions map to a single prctl() call, although some of them may be usable only on a specific architecture or only with root privileges. All known enums that may be used as parameters are provided in this crate.

Each function provides result which will be Err(errno) in case the prctl() call fails.

To run tests requiring root privileges, enable feature "root_test".

Dependencies

~1.5MB
~34K SLoC