(long address, long len, int memoryTag)
| 407 | public static native int msync(long addr, long len, boolean async); |
| 408 | |
| 409 | public static void munmap(long address, long len, int memoryTag) { |
| 410 | mmapCache.unmap(address, len, memoryTag); |
| 411 | } |
| 412 | |
| 413 | public static native long noop(); |
| 414 |