From ec220cd877f098b647c55a1924054c2d20a93ece Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 26 Sep 2019 14:35:24 -0700 Subject: [PATCH] debuggerd: increase the default limit on tombstones to 32. We're missing useful crashes, especially on hwasan builds. Bug: http://b/140580637 Test: run crasher Change-Id: Ib5d8d3bd3fc4d7fec77d0b10302e5595f97a3515 --- debuggerd/tombstoned/tombstoned.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debuggerd/tombstoned/tombstoned.cpp b/debuggerd/tombstoned/tombstoned.cpp index bbeb181c3..d09b8e860 100644 --- a/debuggerd/tombstoned/tombstoned.cpp +++ b/debuggerd/tombstoned/tombstoned.cpp @@ -100,7 +100,7 @@ class CrashQueue { static CrashQueue* for_tombstones() { static CrashQueue queue("/data/tombstones", "tombstone_" /* file_name_prefix */, - GetIntProperty("tombstoned.max_tombstone_count", 10), + GetIntProperty("tombstoned.max_tombstone_count", 32), 1 /* max_concurrent_dumps */); return &queue; }