summaryrefslogtreecommitdiffstats
path: root/include/utils
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2014-01-14 20:16:30 -0800
committerChristopher Ferris <cferris@google.com>2014-01-16 16:12:29 -0800
commit46756821c4fe238f12a6e5ea18c356398f8d8795 (patch)
treef0a17c7afec73b58608ffe0230fad7d5c8f6371b /include/utils
parente847f429f43ae56aaa406697ca603c8469e2100b (diff)
downloadsystem_core-46756821c4fe238f12a6e5ea18c356398f8d8795.zip
system_core-46756821c4fe238f12a6e5ea18c356398f8d8795.tar.gz
system_core-46756821c4fe238f12a6e5ea18c356398f8d8795.tar.bz2
Rewrite libbacktrace to be all C++.
This includes removing the map_info.c source and replacing it with the BacktraceMap class to handle all map related code. Change all callers of libbacktrace map functionality. Also modify the corkscrew thread code so that it doesn't need to build the map twice (once in the corkscrew format and once in the libbacktrace format). Change-Id: I32865a39f83a3dd6f958fc03c2759ba47d12382e
Diffstat (limited to 'include/utils')
-rw-r--r--include/utils/CallStack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/utils/CallStack.h b/include/utils/CallStack.h
index bfe2ddb..27e89f4 100644
--- a/include/utils/CallStack.h
+++ b/include/utils/CallStack.h
@@ -18,7 +18,7 @@
#define ANDROID_CALLSTACK_H
#include <android/log.h>
-#include <backtrace/backtrace.h>
+#include <backtrace/backtrace_constants.h>
#include <utils/String8.h>
#include <utils/Vector.h>