Increase stack trace depth from 64 to 128.

64 stack frames is not deep enough when destroying an SkSL program:
http://screen/4RFxPFj7TFXRcTF

Change-Id: I53b151a640a982af7864a17ef0381e231e3fb872
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/327338
Auto-Submit: John Stiles <johnstiles@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: John Stiles <johnstiles@google.com>
This commit is contained in:
John Stiles 2020-10-15 13:27:12 -04:00 committed by Skia Commit-Bot
parent ec64d037bd
commit ede793a1af

View File

@ -355,7 +355,7 @@ static void find_culprit() {
find_culprit();
#if !defined(SK_BUILD_FOR_ANDROID)
void* stack[64];
void* stack[128];
int count = backtrace(stack, SK_ARRAY_COUNT(stack));
char** symbols = backtrace_symbols(stack, count);
info("\nStack trace:\n");