mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
1999-02-21 David S. Miller <davem@redhat.com> * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h: Fix parentheses in Feb 2 changes. * sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h: Likewise.
This commit is contained in:
@ -18,8 +18,8 @@
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#define SIGCONTEXT __siginfo_t *
|
||||
#define GET_PC(ctx) ((void *) ctx->si_regs.pc)
|
||||
#define ADVANCE_STACK_FRAME(next) \
|
||||
((void *)&((struct reg_window *) (next)->ins[6]))
|
||||
#define GET_STACK(ctx) ((void *) ctx->si_regs.u_regs[14])
|
||||
#define GET_FRAME(ctx) ADVANCE_STACK_FRAME (GET_STACK(ctx))
|
||||
#define GET_PC(__ctx) ((void *) ((__ctx)->si_regs.pc))
|
||||
#define ADVANCE_STACK_FRAME(__next) \
|
||||
((void *)&(((struct reg_window *) (__next))->ins[6]))
|
||||
#define GET_STACK(__ctx) ((void *) (__ctx)->si_regs.u_regs[14])
|
||||
#define GET_FRAME(__ctx) ADVANCE_STACK_FRAME (GET_STACK(__ctx))
|
||||
|
@ -21,9 +21,9 @@
|
||||
#define STACK_BIAS 2047
|
||||
#endif
|
||||
#define SIGCONTEXT __siginfo_t *
|
||||
#define GET_PC(ctx) ((void *) ctx->si_regs.tpc)
|
||||
#define ADVANCE_STACK_FRAME(next) \
|
||||
((void *) &((struct reg_window *) (((unsigned long int) next) \
|
||||
#define GET_PC(__ctx) ((void *) ((__ctx)->si_regs.tpc))
|
||||
#define ADVANCE_STACK_FRAME(__next) \
|
||||
((void *) &((struct reg_window *) (((unsigned long int) (__next)) \
|
||||
+ STACK_BIAS))->ins[6])
|
||||
#define GET_STACK(ctx) ((void *) ctx->si_regs.u_regs[14])
|
||||
#define GET_FRAME(ctx) ADVANCE_STACK_FRAME (GET_STACK (ctx))
|
||||
#define GET_STACK(__ctx) ((void *) ((__ctx)->si_regs.u_regs[14]))
|
||||
#define GET_FRAME(__ctx) ADVANCE_STACK_FRAME (GET_STACK (__ctx))
|
||||
|
Reference in New Issue
Block a user