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

Function syscall_pselect6_time64

source/kernel/syscall.cpp:783–788  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

781}
782
783static U32 syscall_pselect6_time64(CPU* cpu, U32 eipCount) {
784 SYS_LOG1(SYSCALL_PROCESS, cpu, "pselect6_time64: nfd=%d readfds=%X writefds=%X errorfds=%X timeout=%d sigmask=%X", ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
785 U32 result = kselect(cpu->thread, ARG1, ARG2, ARG3, ARG4, ARG5, false, ARG6, true);
786 SYS_LOG(SYSCALL_PROCESS, cpu, " result=%d(0x%X)\n", result, result);
787 return result;
788}
789
790static U32 syscall_flock(CPU* cpu, U32 eipCount) {
791#ifdef _DEBUG

Callers

nothing calls this directly

Calls 1

kselectFunction · 0.85

Tested by

no test coverage detected