MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / syscall_mincore

Function syscall_mincore

source/kernel/syscall.cpp:1144–1149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1142}
1143
1144static U32 syscall_mincore(CPU* cpu, U32 eipCount) {
1145 SYS_LOG1(SYSCALL_PROCESS, cpu, "mincore: address=%X length=%d vec=%X", ARG1, ARG2, ARG3);
1146 U32 result = cpu->thread->process->mincore(ARG1, ARG2, ARG3);
1147 SYS_LOG(SYSCALL_PROCESS, cpu, " result=%d(0x%X)\n", result, result);
1148 return result;
1149}
1150
1151static U32 syscall_madvise(CPU* cpu, U32 eipCount) {
1152 U32 result = 0;

Callers

nothing calls this directly

Calls 1

mincoreMethod · 0.80

Tested by

no test coverage detected