| 1398 | namespace { |
| 1399 | |
| 1400 | Status StatusFromMmapErrno(const char* prefix) { |
| 1401 | #ifdef _WIN32 |
| 1402 | errno = __map_mman_error(GetLastError(), EPERM); |
| 1403 | #endif |
| 1404 | return IOErrorFromErrno(errno, prefix); |
| 1405 | } |
| 1406 | |
| 1407 | int64_t GetPageSizeInternal() { |
| 1408 | #if defined(__APPLE__) |
no test coverage detected