Function mincore [src]
Determine whether pages are resident in memory.
Prototype
pub fn mincore(ptr: [*]align(page_size_min) u8, length: usize, vec: [*]u8) MincoreError!void
Parameters
ptr: [*]align(page_size_min) u8
length: usize
vec: [*]u8
Possible Errors
vec points to an invalid address.
addr is not page-aligned.
The mincore syscall is not available on this version and configuration of this UNIX-like kernel.
One of the following:
- length is greater than user space TASK_SIZE - addr
- addr + length contains unmapped memory
A kernel resource was temporarily unavailable.
The Operating System returned an undocumented error code.
This error is in theory not possible, but it would be better to handle this error than to invoke undefined behavior.
When this error code is observed, it usually means the Zig Standard Library needs a small patch to add the error code to the error set for the respective function.
Source
pub fn mincore(ptr: [*]align(page_size_min) u8, length: usize, vec: [*]u8) MincoreError!void {
return switch (errno(system.mincore(ptr, length, vec))) {
.SUCCESS => {},
.AGAIN => error.SystemResources,
.FAULT => error.InvalidAddress,
.INVAL => error.InvalidSyscall,
.NOMEM => error.OutOfMemory,
.NOSYS => error.MincoreUnavailable,
else => |err| unexpectedErrno(err),
};
}