mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 11:20:07 +00:00
Update.
2002-03-21 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct _fpstate): Add separate struct for x86-64. * sysdeps/unix/sysv/linux/x86_64/sys/user.h (struct user_fpregs_struct): Change member names to follow kernel.
This commit is contained in:
parent
943b72618e
commit
57d180fd26
@ -1,3 +1,11 @@
|
|||||||
|
2002-03-21 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (struct
|
||||||
|
_fpstate): Add separate struct for x86-64.
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/x86_64/sys/user.h (struct
|
||||||
|
user_fpregs_struct): Change member names to follow kernel.
|
||||||
|
|
||||||
2002-03-20 Ulrich Drepper <drepper@redhat.com>
|
2002-03-20 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* nis/ypclnt.c (yp_all): Remove the hack introduced on 1998-09-29.
|
* nis/ypclnt.c (yp_all): Remove the hack introduced on 1998-09-29.
|
||||||
|
@ -29,17 +29,17 @@
|
|||||||
|
|
||||||
struct user_fpregs_struct
|
struct user_fpregs_struct
|
||||||
{
|
{
|
||||||
unsigned short int cwd;
|
__uint16_t cwd;
|
||||||
unsigned short int swd;
|
__uint16_t swd;
|
||||||
unsigned short int twd;
|
__uint16_t twd;
|
||||||
unsigned short int fop;
|
__uint16_t fop;
|
||||||
unsigned long int frip;
|
__uint64_t rip;
|
||||||
unsigned long int frdp;
|
__uint64_t rdp;
|
||||||
unsigned int mxcsr;
|
__uint32_t mxcsr;
|
||||||
unsigned int reserved;
|
__uint32_t mxcr_mask;
|
||||||
unsigned int st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
|
__uint32_t st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
|
||||||
unsigned int xmm_space[64]; /* 16*16 bytes for each XMM-reg = 128 bytes */
|
__uint32_t xmm_space[64]; /* 16*16 bytes for each XMM-reg = 128 bytes */
|
||||||
unsigned int padding[24];
|
__uint32_t padding[24];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct user_regs_struct
|
struct user_regs_struct
|
||||||
|
Loading…
Reference in New Issue
Block a user