|
Message-Id: <1437483685-85077-1-git-send-email-nbd@openwrt.org> Date: Tue, 21 Jul 2015 15:01:25 +0200 From: Felix Fietkau <nbd@...nwrt.org> To: musl@...ts.openwall.com Subject: [PATCH] mips: fix mcontext_t register array field name glibc and uclibc use gregs instead of regs Signed-off-by: Felix Fietkau <nbd@...nwrt.org> --- arch/mips/bits/signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/bits/signal.h b/arch/mips/bits/signal.h index e221842..818e0a7 100644 --- a/arch/mips/bits/signal.h +++ b/arch/mips/bits/signal.h @@ -28,7 +28,7 @@ struct sigcontext typedef struct { unsigned regmask, status; - unsigned long long pc, regs[32], fpregs[32]; + unsigned long long pc, gregs[32], fpregs[32]; unsigned ownedfp, fpc_csr, fpc_eir, used_math, dsp; unsigned long long mdhi, mdlo; unsigned long hi1, lo1, hi2, lo2, hi3, lo3; -- 2.2.2
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.