If true, try to run signal handlers on an alternate stack (if supported on the given platform). An alternate stack is useful for program crashes due to a stack overflow; by running on a alternate stack, the signal handler may run even when normal stack space has been exhausted. The downside of using an alternate stack is that extra memory for the alternate stack needs to be pre‐allocated.

Synopsis

Declared in <absl/debugging/failure_signal_handler.h>

bool use_alternate_stack = true;

Created with MrDocs