epoll is implemented in the legacy (non-WASMFS) JS syscall layer only.
| 1848 | |
| 1849 | // epoll is implemented in the legacy (non-WASMFS) JS syscall layer only. |
| 1850 | int __syscall_epoll_create1(int flags) { return -ENOSYS; } |
| 1851 | |
| 1852 | int __syscall_epoll_ctl(int epfd, int op, int fd, struct epoll_event* ev) { |
| 1853 | return -ENOSYS; |
nothing calls this directly
no outgoing calls
no test coverage detected