diff options
author | Narayan Kamath <narayan@google.com> | 2017-05-10 10:58:59 +0100 |
---|---|---|
committer | Narayan Kamath <narayan@google.com> | 2017-05-22 16:55:21 +0100 |
commit | 2d377cd6888775fe682e49a1ac34a3a6feb78708 (patch) | |
tree | 8821a7f29085d838f37d29e8cea22ae0c2998dfe /debuggerd/handler/debuggerd_fallback.cpp | |
parent | 62db5fcee052980759ecb977cab4c63491e01e56 (diff) |
tombstoned: Add a shared library version of libtombstoned_client...
.. for ART and the frameworks to link against. In the new stack dumping
scheme (see related bug), the Java runtime will communicate with
tombstoned in order to obtain a FD to which it can write its traces.
Also move things around to separate headers that are private
implementation details from headers that constitute the public debuggerd
API. There are currently only three such headers :
- tombstoned/tombstoned.h
- debuggerd/client.h
- debuggerd/handler.h
Bug: 32064548
Test: make
Change-Id: If1b8578550e373d84828b180bbe585f1088d1aa3
Diffstat (limited to 'debuggerd/handler/debuggerd_fallback.cpp')
-rw-r--r-- | debuggerd/handler/debuggerd_fallback.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debuggerd/handler/debuggerd_fallback.cpp b/debuggerd/handler/debuggerd_fallback.cpp index 47c98d1c9..a9c9862e4 100644 --- a/debuggerd/handler/debuggerd_fallback.cpp +++ b/debuggerd/handler/debuggerd_fallback.cpp @@ -42,8 +42,8 @@ #include <async_safe/log.h> #include "debuggerd/handler.h" -#include "debuggerd/tombstoned.h" -#include "debuggerd/util.h" +#include "tombstoned/tombstoned.h" +#include "util.h" #include "backtrace.h" #include "tombstone.h" |