mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-12 12:07:12 +08:00
2000-02-08 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/mips/sigcontextinfo.h (GET_PC): Fix typo. * sysdeps/unix/sysv/linux/mips/register-dump.h (register_dump): Make it compile.
This commit is contained in:
parent
ff75a64c4a
commit
fb8168397d
@ -44,8 +44,7 @@ static void
|
|||||||
register_dump (int fd, struct sigcontext *ctx)
|
register_dump (int fd, struct sigcontext *ctx)
|
||||||
{
|
{
|
||||||
char regs[32][8];
|
char regs[32][8];
|
||||||
char fpregs[32][8];
|
struct iovec iov[38];
|
||||||
struct iovec iov[97]; XXX
|
|
||||||
size_t nr = 0;
|
size_t nr = 0;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -60,11 +59,11 @@ register_dump (int fd, struct sigcontext *ctx)
|
|||||||
|
|
||||||
/* Generate strings of register contents. */
|
/* Generate strings of register contents. */
|
||||||
for (i = 0; i < 31; i++)
|
for (i = 0; i < 31; i++)
|
||||||
hexvalue (ctx->sc_regs, regs[i], 8);
|
hexvalue (ctx->sc_regs[i], regs[i], 8);
|
||||||
hexvalue (ctx->sc_pc, regs[32], 8);
|
hexvalue (ctx->sc_pc, regs[32], 8);
|
||||||
hexvalue (ctx->sc_cause, regs[33], 8);
|
hexvalue (ctx->sc_cause, regs[33], 8);
|
||||||
hexvalue (ctx->sc_status, regs[34], 8);
|
hexvalue (ctx->sc_status, regs[34], 8);
|
||||||
hexvalue (ctx->badvaddr, regs[35], 8);
|
hexvalue (ctx->sc_badvaddr, regs[35], 8);
|
||||||
hexvalue (ctx->sc_mdhi, regs[36], 8);
|
hexvalue (ctx->sc_mdhi, regs[36], 8);
|
||||||
hexvalue (ctx->sc_mdlo, regs[37], 8);
|
hexvalue (ctx->sc_mdlo, regs[37], 8);
|
||||||
|
|
||||||
@ -94,7 +93,6 @@ register_dump (int fd, struct sigcontext *ctx)
|
|||||||
ADD_STRING (" ");
|
ADD_STRING (" ");
|
||||||
}
|
}
|
||||||
ADD_STRING ("\n pc cause status badvaddr lo hi\n ");
|
ADD_STRING ("\n pc cause status badvaddr lo hi\n ");
|
||||||
ADD_MEM (regs[], 8);
|
|
||||||
for (i = 32; i < 38; i++)
|
for (i = 32; i < 38; i++)
|
||||||
{
|
{
|
||||||
ADD_MEM (regs[i], 8);
|
ADD_MEM (regs[i], 8);
|
||||||
|
@ -20,6 +20,6 @@
|
|||||||
|
|
||||||
#define SIGCONTEXT struct sigcontext
|
#define SIGCONTEXT struct sigcontext
|
||||||
#define SIGCONTEXT_EXTRA_ARGS
|
#define SIGCONTEXT_EXTRA_ARGS
|
||||||
#define GET_PC(ctx) ((void *) ctx.pc)
|
#define GET_PC(ctx) ((void *) ctx.sc_pc)
|
||||||
#define GET_FRAME(ctx) ((void *) ctx.sc_regs[30])
|
#define GET_FRAME(ctx) ((void *) ctx.sc_regs[30])
|
||||||
#define GET_STACK(ctx) ((void *) ctx.sc_regs[29])
|
#define GET_STACK(ctx) ((void *) ctx.sc_regs[29])
|
||||||
|
Loading…
Reference in New Issue
Block a user