(path)
| 108 | return FileIOInterface._mmap(start, sz, prot, flags & ~0x4a000, -1, offset) # strip MAP_LOCKED|MAP_POPULATE|MAP_HUGETLB |
| 109 | @staticmethod |
| 110 | def exists(path): return _open(path, os.O_RDONLY) is not None |
| 111 | @staticmethod |
| 112 | def readlink(path): raise NotImplementedError() |
| 113 | @staticmethod |