MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / __syscall_epoll_create1

Function __syscall_epoll_create1

system/lib/wasmfs/syscalls.cpp:1850–1850  ·  view source on GitHub ↗

epoll is implemented in the legacy (non-WASMFS) JS syscall layer only.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected