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

Function syscall_epoll_create1

source/kernel/syscall.cpp:1638–1643  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1636}
1637
1638static U32 syscall_epoll_create1(CPU* cpu, U32 eipCount) {
1639 SYS_LOG1(SYSCALL_PROCESS, cpu, "epoll_create1: falgs=%X", ARG1);
1640 U32 result = cpu->thread->process->epollcreate(0, ARG1);
1641 SYS_LOG(SYSCALL_PROCESS, cpu, " result=%d(0x%X)\n", result, result);
1642 return result;
1643}
1644
1645static U32 syscall_pipe2(CPU* cpu, U32 eipCount) {
1646 SYS_LOG1(SYSCALL_SOCKET, cpu, "pipe2 fildes=%X", ARG1);

Callers

nothing calls this directly

Calls 1

epollcreateMethod · 0.80

Tested by

no test coverage detected