am 2ea89b63: am 936a236b: Merge "Add uncached argument to BacktraceMap::Create on darwin"

* commit '2ea89b631d58ecd8edd7165ed8840d1e1047aa72':
  Add uncached argument to BacktraceMap::Create on darwin
This commit is contained in:
Brian Carlstrom 2014-08-05 13:11:42 +00:00 committed by Android Git Automerger
commit 34f9b1e9f2
1 changed files with 1 additions and 1 deletions

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;