Add uncached argument to BacktraceMap::Create on darwin

Change-Id: I247a98fc3b98879a0c34a975f9914ccec95d1a04
This commit is contained in:
Brian Carlstrom 2014-08-05 00:15:49 -07:00
parent 1f5af3c26c
commit b978a329ef
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;