diff options
author | Andreas Jaeger <aj@suse.de> | 2000-02-08 17:27:54 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-02-08 17:27:54 +0000 |
commit | c03eebe14d36ff8c07c424e5ab74b9fa2d781f9f (patch) | |
tree | a837abc58b843d49ab3e9ca2055f8f5ca453f230 /sysdeps/unix/sysv/linux/mips/sigcontextinfo.h | |
parent | 8308c68b8839d5795206db96e5aab01d8f5e1b97 (diff) | |
download | glibc-c03eebe14d36ff8c07c424e5ab74b9fa2d781f9f.tar.gz glibc-c03eebe14d36ff8c07c424e5ab74b9fa2d781f9f.tar.xz glibc-c03eebe14d36ff8c07c424e5ab74b9fa2d781f9f.zip |
Update.
* sysdeps/unix/sysv/linux/mips/sigcontextinfo.h (GET_PC): Fix typo. Make it compile.
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips/sigcontextinfo.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/sigcontextinfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h b/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h index 2d9f280b12..9b3e7ea3a6 100644 --- a/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h +++ b/sysdeps/unix/sysv/linux/mips/sigcontextinfo.h @@ -20,6 +20,6 @@ #define SIGCONTEXT struct sigcontext #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_STACK(ctx) ((void *) ctx.sc_regs[29]) |