mirror of
git://git.musl-libc.org/musl
synced 2025-04-10 03:04:01 +00:00
fix fpregset_t type on powerpc64
the userspace ucontext API has this as an array rather than a
structure.
commit 3c59a86895
fixed the
corresponding mistake for vrregset_t, namely that the original
powerpc64 port used a mix of types from 32-bit powerpc and powerpc64
rather than matching the 64-bit types.
This commit is contained in:
parent
f6ecd0c296
commit
c9f48cde0a
@ -9,11 +9,7 @@
|
|||||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
||||||
|
|
||||||
typedef unsigned long greg_t, gregset_t[48];
|
typedef unsigned long greg_t, gregset_t[48];
|
||||||
|
typedef double fpregset_t[33];
|
||||||
typedef struct {
|
|
||||||
double fpregs[32];
|
|
||||||
double fpscr;
|
|
||||||
} fpregset_t;
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
|
Loading…
Reference in New Issue
Block a user