mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 07:12:26 -08:00
Enlarge default frame size in our version of backtrace_symbols
This commit is contained in:
parent
c4ef79e5bf
commit
5f5ab3a52c
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@
|
|||
static int
|
||||
backtrace(void **buffer, int n)
|
||||
{
|
||||
int nframes = (n > 10)? 10 : n;
|
||||
int nframes = (n > 32)? 32 : n;
|
||||
int i;
|
||||
switch (nframes) {
|
||||
case 32: buffer[31] = __builtin_return_address(31);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue