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

Function syscall_epoll_create

source/kernel/syscall.cpp:1369–1374  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1367}
1368
1369static U32 syscall_epoll_create(CPU* cpu, U32 eipCount) {
1370 SYS_LOG1(SYSCALL_PROCESS, cpu, "epoll_create: size=%d", ARG1);
1371 U32 result = cpu->thread->process->epollcreate(ARG1, 0);
1372 SYS_LOG(SYSCALL_PROCESS, cpu, " result=%d(0x%X)\n", result, result);
1373 return result;
1374}
1375
1376static U32 syscall_epoll_ctl(CPU* cpu, U32 eipCount) {
1377 SYS_LOG1(SYSCALL_PROCESS, cpu, "epoll_ctl: epfd=%d op=%d fd=%d events=%X", ARG1, ARG2, ARG3, ARG4);

Callers

nothing calls this directly

Calls 1

epollcreateMethod · 0.80

Tested by

no test coverage detected