1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
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:
Ulrich Drepper
1999-02-22 09:37:25 +00:00
parent 13f2ac59bf
commit 555d4c582e
3 changed files with 16 additions and 10 deletions

View File

@ -1,3 +1,9 @@
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.
1999-02-21 Andreas Jaeger <aj@arthur.rhein-neckar.de> 1999-02-21 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/generic/glob.c (glob): Save previous errno. * sysdeps/generic/glob.c (glob): Save previous errno.

View File

@ -18,8 +18,8 @@
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
#define SIGCONTEXT __siginfo_t * #define SIGCONTEXT __siginfo_t *
#define GET_PC(ctx) ((void *) ctx->si_regs.pc) #define GET_PC(__ctx) ((void *) ((__ctx)->si_regs.pc))
#define ADVANCE_STACK_FRAME(next) \ #define ADVANCE_STACK_FRAME(__next) \
((void *)&((struct reg_window *) (next)->ins[6])) ((void *)&(((struct reg_window *) (__next))->ins[6]))
#define GET_STACK(ctx) ((void *) ctx->si_regs.u_regs[14]) #define GET_STACK(__ctx) ((void *) (__ctx)->si_regs.u_regs[14])
#define GET_FRAME(ctx) ADVANCE_STACK_FRAME (GET_STACK(ctx)) #define GET_FRAME(__ctx) ADVANCE_STACK_FRAME (GET_STACK(__ctx))

View File

@ -21,9 +21,9 @@
#define STACK_BIAS 2047 #define STACK_BIAS 2047
#endif #endif
#define SIGCONTEXT __siginfo_t * #define SIGCONTEXT __siginfo_t *
#define GET_PC(ctx) ((void *) ctx->si_regs.tpc) #define GET_PC(__ctx) ((void *) ((__ctx)->si_regs.tpc))
#define ADVANCE_STACK_FRAME(next) \ #define ADVANCE_STACK_FRAME(__next) \
((void *) &((struct reg_window *) (((unsigned long int) next) \ ((void *) &((struct reg_window *) (((unsigned long int) (__next)) \
+ STACK_BIAS))->ins[6]) + STACK_BIAS))->ins[6])
#define GET_STACK(ctx) ((void *) ctx->si_regs.u_regs[14]) #define GET_STACK(__ctx) ((void *) ((__ctx)->si_regs.u_regs[14]))
#define GET_FRAME(ctx) ADVANCE_STACK_FRAME (GET_STACK (ctx)) #define GET_FRAME(__ctx) ADVANCE_STACK_FRAME (GET_STACK (__ctx))