| 1714 | } |
| 1715 | |
| 1716 | int _munmap_js( |
| 1717 | void* addr, size_t length, int prot, int flags, int fd, off_t offset) { |
| 1718 | // TODO: This is not correct! Mappings should be associated with files, not |
| 1719 | // fds. |
| 1720 | // TODO: Syncing should probably be handled in __syscall_munmap instead. |
| 1721 | return _msync_js(addr, length, prot, flags, fd, offset); |
| 1722 | } |
| 1723 | |
| 1724 | // Stubs (at least for now) |
| 1725 |
no test coverage detected