diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mem_map.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem_map.cc b/src/mem_map.cc index f3f4be724d..6bc37ee4ea 100644 --- a/src/mem_map.cc +++ b/src/mem_map.cc @@ -74,7 +74,7 @@ void CheckMapRequest(byte* addr, size_t length) { // ... // TODO: the -v option replaces "-w -resident -dirty -purge -submap -allSplitLibs -noCoalesce" >= 10.6. - std::string command(StringPrintf("vmmap -w -resident -dirty -purge -submap -allSplitLibs -noCoalesce -interleaved %d", getpid())); + std::string command(StringPrintf("vmmap -w -resident -submap -allSplitLibs -noCoalesce -interleaved %d", getpid())); FILE* fp = popen(command.c_str(), "r"); if (fp == NULL) { PLOG(FATAL) << "popen failed"; |