diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-09-14 01:44:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-09-14 01:44:32 +0000 |
commit | 59e33904dd1ce8048251f0fc727eaac51944802a (patch) | |
tree | feca101e18e8bfa28e5b1929c5b2e168f4695b55 /sysdeps/unix/sysv/linux/arm/sys/user.h | |
parent | 4a33c2f55eab04206e22ab972a77f62486fe5a97 (diff) | |
download | glibc-59e33904dd1ce8048251f0fc727eaac51944802a.tar.gz |
Update.
1999-08-09 Scott Bambrough <scottb@netwinder.org>
* sysdeps/unix/sysv/linux/arm/sys/user.h: Added members
'unsigned char ftype[8]', and 'unsigned int init_flag' to
struct user_fp. Tnese were added in version 2.2.12 of the
ARM Linux kernel.
* sysdeps/unix/sysv/linux/arm/sys/elf.h: New file.
* sysdeps/unix/sysv/linux/arm/sys/procfs.h: New file.
The generic procfs.h included <asm/elf.h>. This causes
structure redefinition errors when <sys/user.h> and <sys/procfs.h>
are included in the same source file. Found when building GDB.
Diffstat (limited to 'sysdeps/unix/sysv/linux/arm/sys/user.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/sys/user.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/arm/sys/user.h b/sysdeps/unix/sysv/linux/arm/sys/user.h index f06d3e465a..253b0f5ea9 100644 --- a/sysdeps/unix/sysv/linux/arm/sys/user.h +++ b/sysdeps/unix/sysv/linux/arm/sys/user.h @@ -40,6 +40,8 @@ struct user_fp } fpregs[8]; unsigned int fpsr:32; unsigned int fpcr:32; + unsigned char ftype[8]; + unsigned int init_flag; }; struct user |