Merge "Add uncached argument to BacktraceMap::Create on darwin"

This commit is contained in:
Brian Carlstrom 2014-08-05 07:19:22 +00:00 committed by Gerrit Code Review
commit 936a236b9e

View file

@ -137,7 +137,7 @@ bool BacktraceMap::Build() {
#if defined(__APPLE__)
// Corkscrew and libunwind don't compile on the mac, so create a generic
// map object.
BacktraceMap* BacktraceMap::Create(pid_t pid) {
BacktraceMap* BacktraceMap::Create(pid_t pid, bool uncached) {
BacktraceMap* map = new BacktraceMap(pid);
if (!map->Build()) {
delete map;