| 1842 | } |
| 1843 | |
| 1844 | int __syscall_fadvise64(int fd, off_t offset, off_t len, int advice) { |
| 1845 | // Advice is currently ignored. TODO some backends might use it |
| 1846 | return 0; |
| 1847 | } |
| 1848 | |
| 1849 | // epoll is implemented in the legacy (non-WASMFS) JS syscall layer only. |
| 1850 | int __syscall_epoll_create1(int flags) { return -ENOSYS; } |
nothing calls this directly
no outgoing calls
no test coverage detected