diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-02-20 02:56:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-02-20 02:56:12 +0000 |
commit | 3372bbf8408a1f3c79684358bc4314fb0efc75bd (patch) | |
tree | cd406e08d63137a4bd9b1571d0cdb14dc34a5ef9 /sysdeps/unix/sysv/linux/i386 | |
parent | e6676ca35f6f6aeab0e1791f2dc9280979765bef (diff) | |
download | glibc-3372bbf8408a1f3c79684358bc4314fb0efc75bd.tar glibc-3372bbf8408a1f3c79684358bc4314fb0efc75bd.tar.gz glibc-3372bbf8408a1f3c79684358bc4314fb0efc75bd.tar.bz2 glibc-3372bbf8408a1f3c79684358bc4314fb0efc75bd.zip |
Update.
_libc_fpreg and _libc_fpstate and use it to define fpregset_t.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/sys/procfs.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/sys/ucontext.h | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/sys/procfs.h b/sysdeps/unix/sysv/linux/i386/sys/procfs.h index 230dfa6c30..b54f4722c5 100644 --- a/sysdeps/unix/sysv/linux/i386/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/i386/sys/procfs.h @@ -101,8 +101,8 @@ struct elf_prpsinfo typedef void *psaddr_t; /* Register sets. Linux has different names. */ -typedef gregset_t prgregset_t; -typedef fpregset_t *prfpregset_t; +typedef elf_gregset_t prgregset_t; +typedef elf_fpregset_t *prfpregset_t; /* We don't have any differences between processes and threads, therefore habe only ine PID type. */ diff --git a/sysdeps/unix/sysv/linux/i386/sys/ucontext.h b/sysdeps/unix/sysv/linux/i386/sys/ucontext.h index c2a657b8cc..89264111d4 100644 --- a/sysdeps/unix/sysv/linux/i386/sys/ucontext.h +++ b/sysdeps/unix/sysv/linux/i386/sys/ucontext.h @@ -86,13 +86,13 @@ enum #endif /* Definitions taken from the kernel headers. */ -struct _fpreg +struct _libc_fpreg { unsigned short int significand[4]; unsigned short int exponent; }; -struct _fpstate +struct _libc_fpstate { unsigned long int cw; unsigned long int sw; @@ -101,12 +101,12 @@ struct _fpstate unsigned long int cssel; unsigned long int dataoff; unsigned long int datasel; - struct _fpreg _st[8]; + struct _libc_fpreg _st[8]; unsigned long int status; }; /* Structure to describe FPU registers. */ -typedef struct _fpstate *fpregset_t; +typedef struct _libc_fpstate *fpregset_t; /* Context to describe whole processor state. */ typedef struct @@ -127,7 +127,7 @@ typedef struct ucontext stack_t uc_stack; mcontext_t uc_mcontext; __sigset_t uc_sigmask; - struct _fpstate __fpregs_mem; + struct _libc_fpstate __fpregs_mem; } ucontext_t; #endif /* sys/ucontext.h */ |