aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/i386/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/sys')
-rw-r--r--sysdeps/unix/sysv/linux/i386/sys/procfs.h4
-rw-r--r--sysdeps/unix/sysv/linux/i386/sys/ucontext.h10
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 230dfa6..b54f472 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 c2a657b..8926411 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 */