| 1596 | } |
| 1597 | |
| 1598 | int __syscall_fstatfs64(int fd, size_t size, struct statfs* buf) { |
| 1599 | auto openFile = wasmFS.getFileTable().locked().getEntry(fd); |
| 1600 | if (!openFile) { |
| 1601 | return -EBADF; |
| 1602 | } |
| 1603 | return doStatFS(openFile->locked().getFile(), size, buf); |
| 1604 | } |
| 1605 | |
| 1606 | int _mmap_js(size_t length, |
| 1607 | int prot, |