summaryrefslogtreecommitdiffstats
path: root/include/backtrace
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2014-08-04 17:08:46 -0700
committerChristopher Ferris <cferris@google.com>2014-08-04 19:21:23 -0700
commitdda47b786835ef3689f06e24650eb65176e2dc5e (patch)
tree03949c0f356c2f706d65f8b17c904f05b19d1a45 /include/backtrace
parent39a8ade7eebc945a112c10ba3331bd9a0934dbec (diff)
downloadsystem_core-dda47b786835ef3689f06e24650eb65176e2dc5e.zip
system_core-dda47b786835ef3689f06e24650eb65176e2dc5e.tar.gz
system_core-dda47b786835ef3689f06e24650eb65176e2dc5e.tar.bz2
Allow getting an uncached process map.
(cherry picked from commit f02593b0e61f8108449770094caa7bb39a646ec1) Change-Id: I2012bf2dc553ebc663345b9eac6d794e80df9c00
Diffstat (limited to 'include/backtrace')
-rw-r--r--include/backtrace/BacktraceMap.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/backtrace/BacktraceMap.h b/include/backtrace/BacktraceMap.h
index c717f09..4ed23a8 100644
--- a/include/backtrace/BacktraceMap.h
+++ b/include/backtrace/BacktraceMap.h
@@ -41,7 +41,10 @@ struct backtrace_map_t {
class BacktraceMap {
public:
- static BacktraceMap* Create(pid_t pid);
+ // If uncached is true, then parse the current process map as of the call.
+ // Passing a map created with uncached set to true to Backtrace::Create()
+ // is unsupported.
+ static BacktraceMap* Create(pid_t pid, bool uncached = false);
virtual ~BacktraceMap();