diff options
author | Josh Gao <jmgao@google.com> | 2021-01-25 22:18:48 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-01-25 22:18:48 +0000 |
commit | 6bf6a9fc612c57ae5c9cd25643fde794713058ea (patch) | |
tree | 9999cbdd78e82ebe9deaa0d3ae344380f6eced93 /debuggerd/handler/debuggerd_handler.cpp | |
parent | ad7d1d13a4f79ad2a5341023b9fc746b3868d10b (diff) | |
parent | 92317d82c970cea68884c3e9efbb5d6441dd6fa2 (diff) |
Merge changes from topic "tombstone_proto"
* changes:
libdebuggerd: add protobuf implementation.
tombstoned: support for protobuf fds.
tombstoned: make it easier to add more types of outputs.
tombstoned: switch from goto to RAII.
Diffstat (limited to 'debuggerd/handler/debuggerd_handler.cpp')
-rw-r--r-- | debuggerd/handler/debuggerd_handler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp index 1297c4d33..ca809e44f 100644 --- a/debuggerd/handler/debuggerd_handler.cpp +++ b/debuggerd/handler/debuggerd_handler.cpp @@ -312,7 +312,7 @@ static DebuggerdDumpType get_dump_type(const debugger_thread_info* thread_info) return kDebuggerdNativeBacktrace; } - return kDebuggerdTombstone; + return kDebuggerdTombstoneProto; } static int debuggerd_dispatch_pseudothread(void* arg) { |