From 89479facb9d8dbd7fb2838128b08a9fc5e74fe57 Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Mon, 9 Oct 2017 16:08:30 -0700 Subject: [PATCH] Get some more debugging for ckati crashes The crash we're following is likely a stack overflow. Use an alternate stack to actually get the backtraces. Also write out ulimit to reference what the stack size should be. Bug: 36182021 Test: ulimit -s 768; build/soong/build_test.bash Change-Id: I8826e5e53f38af552c8b80a1a8a490fde55f2d4b --- build_test.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build_test.bash b/build_test.bash index 6edaa660a..4c43224ce 100755 --- a/build_test.bash +++ b/build_test.bash @@ -34,6 +34,8 @@ source "${TOP}/build/soong/scripts/microfactory.bash" case $(uname) in Linux) export LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so + export SEGFAULT_USE_ALTSTACK=1 + ulimit -a ;; esac