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

Function syscall_pselect6

source/kernel/syscall.cpp:776–781  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

774}
775
776static U32 syscall_pselect6(CPU* cpu, U32 eipCount) {
777 SYS_LOG1(SYSCALL_PROCESS, cpu, "pselect6: nfd=%d readfds=%X writefds=%X errorfds=%X timeout=%d sigmask=%X", ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
778 U32 result = kselect(cpu->thread, ARG1, ARG2, ARG3, ARG4, ARG5, false, ARG6);
779 SYS_LOG(SYSCALL_PROCESS, cpu, " result=%d(0x%X)\n", result, result);
780 return result;
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);

Callers

nothing calls this directly

Calls 1

kselectFunction · 0.85

Tested by

no test coverage detected