rustix 0.33.7

Safe Rust bindings to POSIX/Unix/Linux/Winsock2-like syscalls
Documentation
1
2
3
4
5
#[test]
fn test_proc_funcs() {
    let _maps = rustix::io::proc_self_maps().unwrap();
    let _pagemap = rustix::io::proc_self_pagemap().unwrap();
}