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

Function syscall_writev

source/kernel/syscall.cpp:806–811  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
808 U32 result = cpu->thread->process->writev(cpu->thread, ARG1, ARG2, ARG3);
809 SYS_LOG(SYSCALL_WRITE, cpu, " result=%d(0x%X)\n", result, result);
810 return result;
811}
812
813static U32 syscall_fdatasync(CPU* cpu, U32 eipCount) {
814 U32 result = 0;

Callers

nothing calls this directly

Calls 1

writevMethod · 0.45

Tested by

no test coverage detected