Skip to content
Snippets Groups Projects
Commit 3ccd24c5 authored by Paul Sajna's avatar Paul Sajna
Browse files

mman

parent ae49c54d
No related branches found
No related tags found
No related merge requests found
pub extern "C" fn mlock(arg1: *const libc::c_void, arg2: usize)
-> libc::c_int {
unimplemented!();
}
pub extern "C" fn mlockall(arg1: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn mmap(arg1: *mut libc::c_void, arg2: usize,
arg3: libc::c_int, arg4: libc::c_int,
arg5: libc::c_int, arg6: off_t)
-> *mut libc::c_void {
unimplemented!();
}
pub extern "C" fn mprotect(arg1: *mut libc::c_void, arg2: usize,
arg3: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn msync(arg1: *mut libc::c_void, arg2: usize,
arg3: libc::c_int) -> libc::c_int {
unimplemented!();
}
pub extern "C" fn munlock(arg1: *const libc::c_void, arg2: usize)
-> libc::c_int {
unimplemented!();
}
pub extern "C" fn munlockall() -> libc::c_int {
unimplemented!();
}
pub extern "C" fn munmap(arg1: *mut libc::c_void, arg2: usize)
-> libc::c_int {
unimplemented!();
}
pub extern "C" fn shm_open(arg1: *const libc::c_char,
arg2: libc::c_int, arg3: mode_t)
-> libc::c_int {
unimplemented!();
}
pub extern "C" fn shm_unlink(arg1: *const libc::c_char)
-> libc::c_int {
unimplemented!();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment