summaryrefslogtreecommitdiff
path: root/libbacktrace/include/backtrace
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2017-08-02 01:47:31 +0000
committerChristopher Ferris <cferris@google.com>2017-08-02 01:47:31 +0000
commitdd634d91e926448cf7b50ef6171d4a4137e57a4c (patch)
tree79d8926a3865a95e68d5f0b5d3716b9d7c03262f /libbacktrace/include/backtrace
parent1cd43d947074a5b2a4395b31e3c882f1daa771e9 (diff)
downloadunwinding-dd634d91e926448cf7b50ef6171d4a4137e57a4c.tar.gz
Revert "Add support for the new unwind method."
This reverts commit 1cd43d947074a5b2a4395b31e3c882f1daa771e9. Reason for revert: Strange sailfish boot problem. Change-Id: Ibde9375405cca4343c262335647dac120aab4d73
Diffstat (limited to 'libbacktrace/include/backtrace')
-rw-r--r--libbacktrace/include/backtrace/Backtrace.h2
-rw-r--r--libbacktrace/include/backtrace/BacktraceMap.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/libbacktrace/include/backtrace/Backtrace.h b/libbacktrace/include/backtrace/Backtrace.h
index d67ea50..b919e81 100644
--- a/libbacktrace/include/backtrace/Backtrace.h
+++ b/libbacktrace/include/backtrace/Backtrace.h
@@ -90,8 +90,6 @@ public:
// If map is NULL, then create the map and manage it internally.
// If map is not NULL, the map is still owned by the caller.
static Backtrace* Create(pid_t pid, pid_t tid, BacktraceMap* map = NULL);
- // Same as above, but uses a different underlying unwinder.
- static Backtrace* CreateNew(pid_t pid, pid_t tid, BacktraceMap* map = NULL);
// Create an offline Backtrace object that can be used to do an unwind without a process
// that is still running. If cache_file is set to true, then elf information will be cached
diff --git a/libbacktrace/include/backtrace/BacktraceMap.h b/libbacktrace/include/backtrace/BacktraceMap.h
index 963c34b..02a50f7 100644
--- a/libbacktrace/include/backtrace/BacktraceMap.h
+++ b/libbacktrace/include/backtrace/BacktraceMap.h
@@ -52,8 +52,6 @@ public:
// Passing a map created with uncached set to true to Backtrace::Create()
// is unsupported.
static BacktraceMap* Create(pid_t pid, bool uncached = false);
- // Same as above, but is compatible with the new unwinder.
- static BacktraceMap* CreateNew(pid_t pid, bool uncached = false);
static BacktraceMap* Create(pid_t pid, const std::vector<backtrace_map_t>& maps);