signal_catcher: track tombstoned API changes.
tombstoned_connect now has an enum parameter that specifies the
dump type.
Test: make
Bug: 32064548
Change-Id: I96d85240679dd1bab962ab7a1f5fe20ee02c876b
diff --git a/runtime/signal_catcher.cc b/runtime/signal_catcher.cc
index e3dfc74..8c934d5 100644
--- a/runtime/signal_catcher.cc
+++ b/runtime/signal_catcher.cc
@@ -117,7 +117,7 @@
android::base::unique_fd* output_fd) {
if (use_tombstoned_stack_trace_fd_) {
#if defined(ART_TARGET_ANDROID)
- return tombstoned_connect(getpid(), tombstone_fd, output_fd, false /* is_native_crash */);
+ return tombstoned_connect(getpid(), tombstone_fd, output_fd, kDebuggerdJavaBacktrace);
#else
UNUSED(tombstone_fd);
UNUSED(output_fd);