| 1636 | } |
| 1637 | |
| 1638 | static 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 | |
| 1645 | static U32 syscall_pipe2(CPU* cpu, U32 eipCount) { |
| 1646 | SYS_LOG1(SYSCALL_SOCKET, cpu, "pipe2 fildes=%X", ARG1); |
nothing calls this directly
no test coverage detected