diff options
author | 2012-03-30 14:31:04 -0700 | |
---|---|---|
committer | 2012-03-30 14:31:04 -0700 | |
commit | 273cf36d199cf73de3cf61a559ad27c9d23f9825 (patch) | |
tree | 351cced4f439a1151a2d07dcc197960abcd9fb23 | |
parent | ba7a3ecc0c7342a19951f076474c41d43168f68e (diff) |
Keep fighting Mac OS 10.5 because the build servers are obsolete.
Change-Id: I01b51a7dba147327e839c801109ffcc636ae8a4f
-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"; |