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

Function syscall_epoll_wait

source/kernel/syscall.cpp:1383–1388  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1381}
1382
1383static U32 syscall_epoll_wait(CPU* cpu, U32 eipCount) {
1384 SYS_LOG1(SYSCALL_PROCESS|SYSCALL_THREAD, cpu, "epoll_wait: epfd=%d events=%X maxevents=%d timeout=%d", ARG1, ARG2, ARG3, ARG4);
1385 U32 result = cpu->thread->process->epollwait(cpu->thread, ARG1, ARG2, ARG3, ARG4);
1386 SYS_LOG(SYSCALL_PROCESS|SYSCALL_THREAD, cpu, " result=%d(0x%X)\n", result, result);
1387 return result;
1388}
1389
1390static U32 syscall_set_tid_address(CPU* cpu, U32 eipCount) {
1391 SYS_LOG1(SYSCALL_THREAD, cpu, "set_tid_address: address=%X", ARG1);

Callers

nothing calls this directly

Calls 1

epollwaitMethod · 0.80

Tested by

no test coverage detected