mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-21 08:00:28 +01:00
(unw_tdep_getcontext): Make it an expression returning zero (no error).
(Logical change 1.16)
This commit is contained in:
parent
58142c0a21
commit
74775e31d9
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ typedef ucontext_t unw_tdep_context_t;
|
|||
using the "getcontext" name just because it's using libunwind. We
|
||||
can't just use __getcontext() either, because that isn't exported
|
||||
by glibc... */
|
||||
#define unw_tdep_getcontext(uc) getcontext(uc)
|
||||
#define unw_tdep_getcontext(uc) (getcontext (uc), 0)
|
||||
|
||||
#define unw_tdep_is_fpreg(r) ((unsigned) ((r) - UNW_IA64_FR) < 128)
|
||||
|
||||
|
|
Loading…
Reference in a new issue