mailing list of musl libc
 help / color / mirror / code / Atom feed
* [PATCH] mips: Use fpregset_t for fpregs element
@ 2019-12-18 22:02 Khem Raj
  2020-01-01 20:47 ` Rich Felker
  0 siblings, 1 reply; 2+ messages in thread
From: Khem Raj @ 2019-12-18 22:02 UTC (permalink / raw)
  To: musl; +Cc: Khem Raj

it helps in fixing type errors seen in applications where the elements
of mcontext_t fpregs is accessing struct elements by name

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 arch/mips/bits/signal.h | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/arch/mips/bits/signal.h b/arch/mips/bits/signal.h
index 1a84de59..e1d97ac7 100644
--- a/arch/mips/bits/signal.h
+++ b/arch/mips/bits/signal.h
@@ -19,14 +19,18 @@ typedef struct {
 } fpregset_t;
 struct sigcontext {
 	unsigned sc_regmask, sc_status;
-	unsigned long long sc_pc, sc_regs[32], sc_fpregs[32];
+	unsigned long long sc_pc;
+	gregset_t sc_regs;
+	fpregset_t sc_fpregs;
 	unsigned sc_ownedfp, sc_fpc_csr, sc_fpc_eir, sc_used_math, sc_dsp;
 	unsigned long long sc_mdhi, sc_mdlo;
 	unsigned long sc_hi1, sc_lo1, sc_hi2, sc_lo2, sc_hi3, sc_lo3;
 };
 typedef struct {
 	unsigned regmask, status;
-	unsigned long long pc, gregs[32], fpregs[32];
+	unsigned long long pc;
+	gregset_t gregs;
+	fpregset_t fpregs;
 	unsigned ownedfp, fpc_csr, fpc_eir, used_math, dsp;
 	unsigned long long mdhi, mdlo;
 	unsigned long hi1, lo1, hi2, lo2, hi3, lo3;
-- 
2.24.1



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] mips: Use fpregset_t for fpregs element
  2019-12-18 22:02 [PATCH] mips: Use fpregset_t for fpregs element Khem Raj
@ 2020-01-01 20:47 ` Rich Felker
  0 siblings, 0 replies; 2+ messages in thread
From: Rich Felker @ 2020-01-01 20:47 UTC (permalink / raw)
  To: musl

On Wed, Dec 18, 2019 at 02:02:37PM -0800, Khem Raj wrote:
> it helps in fixing type errors seen in applications where the elements
> of mcontext_t fpregs is accessing struct elements by name
> 
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>  arch/mips/bits/signal.h | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/mips/bits/signal.h b/arch/mips/bits/signal.h
> index 1a84de59..e1d97ac7 100644
> --- a/arch/mips/bits/signal.h
> +++ b/arch/mips/bits/signal.h
> @@ -19,14 +19,18 @@ typedef struct {
>  } fpregset_t;
>  struct sigcontext {
>  	unsigned sc_regmask, sc_status;
> -	unsigned long long sc_pc, sc_regs[32], sc_fpregs[32];
> +	unsigned long long sc_pc;
> +	gregset_t sc_regs;
> +	fpregset_t sc_fpregs;
>  	unsigned sc_ownedfp, sc_fpc_csr, sc_fpc_eir, sc_used_math, sc_dsp;
>  	unsigned long long sc_mdhi, sc_mdlo;
>  	unsigned long sc_hi1, sc_lo1, sc_hi2, sc_lo2, sc_hi3, sc_lo3;
>  };
>  typedef struct {
>  	unsigned regmask, status;
> -	unsigned long long pc, gregs[32], fpregs[32];
> +	unsigned long long pc;
> +	gregset_t gregs;
> +	fpregset_t fpregs;
>  	unsigned ownedfp, fpc_csr, fpc_eir, used_math, dsp;
>  	unsigned long long mdhi, mdlo;
>  	unsigned long hi1, lo1, hi2, lo2, hi3, lo3;
> -- 
> 2.24.1

Merged.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-01-01 20:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18 22:02 [PATCH] mips: Use fpregset_t for fpregs element Khem Raj
2020-01-01 20:47 ` Rich Felker

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).