MCPcopy Create free account
hub / github.com/apache/arrow / StatusFromMmapErrno

Function StatusFromMmapErrno

cpp/src/arrow/util/io_util.cc:1400–1405  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

MemoryMapRemapFunction · 0.85

Calls 2

__map_mman_errorFunction · 0.85
IOErrorFromErrnoFunction · 0.85

Tested by

no test coverage detected