Function mprotect [src]

Prototype

pub fn mprotect(address: [*]const u8, length: usize, protection: usize) usize

Parameters

address: [*]const u8length: usizeprotection: usize

Source

pub fn mprotect(address: [*]const u8, length: usize, protection: usize) usize { return syscall3(.mprotect, @intFromPtr(address), length, protection); }