mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 07:37:38 +01:00
Fix some test failures on x86_64 on distros with small default stacks.
This commit is contained in:
parent
46ea10680d
commit
24112f6d9b
1 changed files with 8 additions and 3 deletions
|
@ -48,14 +48,17 @@ typedef RETSIGTYPE (*sighandler_t) (int);
|
||||||
int verbose;
|
int verbose;
|
||||||
int num_errors;
|
int num_errors;
|
||||||
|
|
||||||
|
/* These variables are global because they
|
||||||
|
* cause the signal stack to overflow */
|
||||||
|
char buf[512], name[256];
|
||||||
|
unw_cursor_t cursor;
|
||||||
|
ucontext_t uc;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
do_backtrace (void)
|
do_backtrace (void)
|
||||||
{
|
{
|
||||||
char buf[512], name[256];
|
|
||||||
unw_word_t ip, sp, off;
|
unw_word_t ip, sp, off;
|
||||||
unw_cursor_t cursor;
|
|
||||||
unw_proc_info_t pi;
|
unw_proc_info_t pi;
|
||||||
unw_context_t uc;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (verbose)
|
if (verbose)
|
||||||
|
@ -182,6 +185,8 @@ sighandler (int signal, void *siginfo, void *context)
|
||||||
# endif
|
# endif
|
||||||
#elif UNW_TARGET_X86
|
#elif UNW_TARGET_X86
|
||||||
printf (" @ %lx", (unsigned long) uc->uc_mcontext.gregs[REG_EIP]);
|
printf (" @ %lx", (unsigned long) uc->uc_mcontext.gregs[REG_EIP]);
|
||||||
|
#elif UNW_TARGET_X86_64
|
||||||
|
printf (" @ %lx", (unsigned long) uc->uc_mcontext.gregs[REG_RIP]);
|
||||||
#endif
|
#endif
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue