Skip to content

Commit

Permalink
Merge pull request #929 from leleliu008/fix-undeclared-MAP_POPULATE
Browse files Browse the repository at this point in the history
MAP_POPULATE is Linux-specific and not declared on other platforms
  • Loading branch information
kelson42 committed Aug 30, 2024
2 parents 3130784 + 51bdcf3 commit cdcbb6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/file_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,12 @@ class MMapException : std::exception {};
char*
mmapReadOnly(int fd, offset_type offset, size_type size)
{
#if defined(__APPLE__) || defined(__OpenBSD__) || defined(__HAIKU__)
const auto MAP_FLAGS = MAP_PRIVATE;
#if defined(__linux__)
const auto MAP_FLAGS = MAP_PRIVATE|MAP_POPULATE;
#elif defined(__FreeBSD__)
const auto MAP_FLAGS = MAP_PRIVATE|MAP_PREFAULT_READ;
#else
const auto MAP_FLAGS = MAP_PRIVATE|MAP_POPULATE;
const auto MAP_FLAGS = MAP_PRIVATE;
#endif

const auto p = (char*)mmap(NULL, size, PROT_READ, MAP_FLAGS, fd, offset);
Expand Down

0 comments on commit cdcbb6c

Please sign in to comment.