Skip to content

Commit

Permalink
MAP_POPULATE is Linux-specific and not declared on NetBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
leleliu008 committed Aug 30, 2024
1 parent 398a3c2 commit 47877d7
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 47877d7

Please sign in to comment.