nc 0.9.7

Access system calls directly
Documentation
1
2
3
4
5
/// Define a subpage protection for an address range.
pub unsafe fn subpage_prot(addr: usize, len: usize, map: &mut u32) -> Result<(), Errno> {
    let map_ptr = map as *mut u32 as usize;
    syscall3(SYS_SUBPAGE_PROT, addr, len, map_ptr).map(drop)
}