aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/i386/sys
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-19 08:05:35 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-19 08:05:35 +0000
commit99bd22d637df063f913d3a232c494985b0f87bcb (patch)
tree33f389b8031758ac848dd7228366066116686bb9 /sysdeps/unix/sysv/linux/i386/sys
parentc9fccff8aab9ab4fb5b841526619eb5bfe646dc6 (diff)
downloadglibc-99bd22d637df063f913d3a232c494985b0f87bcb.zip
glibc-99bd22d637df063f913d3a232c494985b0f87bcb.tar.gz
glibc-99bd22d637df063f913d3a232c494985b0f87bcb.tar.bz2
Update.
2000-02-19 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Make fpregset_t definition compatible with definition in 2.1.2 and before. (struct ucontext): Use fpregset_t. * sysdeps/unix/sysv/linux/i386/sys/procfs.h (prfpregset_t): Define as pointer to fpregset_t.
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.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/sys/procfs.h b/sysdeps/unix/sysv/linux/i386/sys/procfs.h
index 06300eb..230dfa6 100644
--- a/sysdeps/unix/sysv/linux/i386/sys/procfs.h
+++ b/sysdeps/unix/sysv/linux/i386/sys/procfs.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -102,7 +102,7 @@ typedef void *psaddr_t;
/* Register sets. Linux has different names. */
typedef gregset_t prgregset_t;
-typedef fpregset_t prfpregset_t;
+typedef 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 44a5b12..c10e99f 100644
--- a/sysdeps/unix/sysv/linux/i386/sys/ucontext.h
+++ b/sysdeps/unix/sysv/linux/i386/sys/ucontext.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -82,7 +82,7 @@ enum
#endif
/* Structure to describe FPU registers. */
-typedef struct _fpstate *fpregset_t;
+typedef struct user_fpregs_struct fpregset_t;
/* Context to describe whole processor state. */
typedef struct
@@ -103,7 +103,7 @@ typedef struct ucontext
stack_t uc_stack;
mcontext_t uc_mcontext;
__sigset_t uc_sigmask;
- struct _fpstate __fpregs_mem;
+ fpregset_t __fpregs_mem;
} ucontext_t;
#endif /* sys/ucontext.h */