aboutsummaryrefslogtreecommitdiff
path: root/sys/mips/include
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2016-02-12 07:38:19 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2016-02-12 07:38:19 +0000
commit90edf67ecf94bce51e6c823ee2a10a7b65f416f8 (patch)
tree783f901008bac7a377fe9c52843c1f80c9e84512 /sys/mips/include
parent411c83ccd691eec84686df54c5cc7ee3cdbeb265 (diff)
Notes
Diffstat (limited to 'sys/mips/include')
-rw-r--r--sys/mips/include/ucontext.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/mips/include/ucontext.h b/sys/mips/include/ucontext.h
index a37fe7ec8d720..2b1a952e80f06 100644
--- a/sys/mips/include/ucontext.h
+++ b/sys/mips/include/ucontext.h
@@ -50,13 +50,13 @@ typedef struct __mcontext {
* struct sigcontext and ucontext_t at the same time.
*/
int mc_onstack; /* sigstack state to restore */
- register_t mc_pc; /* pc at time of signal */
- register_t mc_regs[32]; /* processor regs 0 to 31 */
- register_t sr; /* status register */
- register_t mullo, mulhi; /* mullo and mulhi registers... */
+ __register_t mc_pc; /* pc at time of signal */
+ __register_t mc_regs[32]; /* processor regs 0 to 31 */
+ __register_t sr; /* status register */
+ __register_t mullo, mulhi; /* mullo and mulhi registers... */
int mc_fpused; /* fp has been used */
f_register_t mc_fpregs[33]; /* fp regs 0 to 31 and csr */
- register_t mc_fpc_eir; /* fp exception instruction reg */
+ __register_t mc_fpc_eir; /* fp exception instruction reg */
void *mc_tls; /* pointer to TLS area */
int __spare__[8]; /* XXX reserved */
} mcontext_t;