libc routes zero-timeout poll() calls here (see musl's poll.c). WasmFS's __syscall_poll never blocks, so the zero-timeout probe is the same call.
| 1441 | // libc routes zero-timeout poll() calls here (see musl's poll.c). WasmFS's |
| 1442 | // __syscall_poll never blocks, so the zero-timeout probe is the same call. |
| 1443 | int __syscall_poll_nonblocking(struct pollfd* fds, nfds_t nfds) { |
| 1444 | return __syscall_poll(fds, nfds, 0); |
| 1445 | } |
| 1446 | |
| 1447 | int __syscall_fallocate(int fd, int mode, off_t offset, off_t len) { |
| 1448 | assert(mode == 0); // TODO, but other modes were never supported in the old FS |
no test coverage detected