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

Function syscall_msync

source/kernel/syscall.cpp:799–804  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

797}
798
799static U32 syscall_msync(CPU* cpu, U32 eipCount) {
800 SYS_LOG1(SYSCALL_MEMORY, cpu, "msync addr=%X length=%d flags=%X", ARG1, ARG2, ARG3);
801 U32 result = cpu->thread->process->msync(cpu->thread, ARG1, ARG2, ARG3);
802 SYS_LOG(SYSCALL_MEMORY, cpu, " result=%d(0x%X)\n", result, result);
803 return result;
804}
805
806static U32 syscall_writev(CPU* cpu, U32 eipCount) {
807 SYS_LOG1(SYSCALL_WRITE, cpu, "writev: filds=%d iov=0x%X iovcn=%d", ARG1, ARG2, ARG3);

Callers

nothing calls this directly

Calls 1

msyncMethod · 0.80

Tested by

no test coverage detected