diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/x86_64')
-rw-r--r-- | sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h b/sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h index 41ace60ee4..165d6b0ead 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h @@ -18,13 +18,5 @@ #include <stdint.h> #define SIGCONTEXT siginfo_t *_si, ucontext_t * -#define SIGCONTEXT_EXTRA_ARGS _si, #define GET_PC(ctx) \ ((void *) (uintptr_t) (ctx)->uc_mcontext.gregs[REG_RIP]) -#define GET_FRAME(ctx) \ - ((void *) (uintptr_t) (ctx)->uc_mcontext.gregs[REG_RBP]) -#define GET_STACK(ctx) \ - ((void *) (uintptr_t) (ctx)->uc_mcontext.gregs[REG_RSP]) - -#define CALL_SIGHANDLER(handler, signo, ctx) \ - (handler)((signo), SIGCONTEXT_EXTRA_ARGS (ctx)) |