Skip to content

Commit

Permalink
Add uncached argument to BacktraceMap::Create on darwin
Browse files Browse the repository at this point in the history
(cherry picked from commit b978a32)

Change-Id: Ia2ce3193bc0b17f2a17bb3757a5930b03f84c5ec
  • Loading branch information
bdcgoogle committed Aug 5, 2014
1 parent f02593b commit 2a36342
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbacktrace/BacktraceMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2a36342

Please sign in to comment.