diff options
author | Joseph Myers <joseph@codesourcery.com> | 2018-09-25 16:50:30 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-09-25 16:50:30 +0000 |
commit | d62f9ec0cce26a275ec68f4564814041a33395b1 (patch) | |
tree | 272a4f6e75ab554010c46d5e8b276c97dfb23596 /sysdeps/unix/sysv/linux/Makefile | |
parent | d0d8eb4328dbc619a6a19f81c722aa06828766bf (diff) | |
download | glibc-d62f9ec0cce26a275ec68f4564814041a33395b1.tar.gz glibc-d62f9ec0cce26a275ec68f4564814041a33395b1.tar.xz glibc-d62f9ec0cce26a275ec68f4564814041a33395b1.zip |
Complete sys/procfs.h unification.
This patch completes the process of unifying sys/procfs.h headers for architectures using the Linux kernel by making alpha use the generic version. That was previously deferred because alpha has different definitions of prgregset_t and prfpregset_t from other architectures, so changing to the common definitions would change C++ name mangling. To avoid such a change, a header bits/procfs-prregset.h is added, and alpha gets its own version of that header. Tested for x86_64 and x86, and with build-many-glibcs.py. * sysdeps/unix/sysv/linux/sys/procfs.h: Include <bits/procfs-prregset.h>. (prgregset_t): Define using __prgregset_t. (prfpregset_t): Define using __prfpregset_t. * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc] (sysdep_headers): Add bits/procfs-prregset.h. * sysdeps/unix/sysv/linux/bits/procfs-prregset.h: New file. * sysdeps/unix/sysv/linux/alpha/bits/procfs-prregset.h: Likewise. * sysdeps/unix/sysv/linux/alpha/bits/procfs.h: Likewise. * sysdeps/unix/sysv/linux/alpha/sys/procfs.h: Remove file.
Diffstat (limited to 'sysdeps/unix/sysv/linux/Makefile')
-rw-r--r-- | sysdeps/unix/sysv/linux/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/Makefile b/sysdeps/unix/sysv/linux/Makefile index db5b17fcb7..99d71ea296 100644 --- a/sysdeps/unix/sysv/linux/Makefile +++ b/sysdeps/unix/sysv/linux/Makefile @@ -41,7 +41,8 @@ sysdep_headers += sys/mount.h sys/acct.h sys/sysctl.h \ bits/socket_type.h bits/syscall.h bits/sysctl.h \ bits/mman-linux.h bits/mman-shared.h bits/ptrace-shared.h \ bits/siginfo-arch.h bits/siginfo-consts-arch.h \ - bits/procfs.h bits/procfs-id.h bits/procfs-extra.h + bits/procfs.h bits/procfs-id.h bits/procfs-extra.h \ + bits/procfs-prregset.h tests += tst-clone tst-clone2 tst-clone3 tst-fanotify tst-personality \ tst-quota tst-sync_file_range tst-sysconf-iov_max tst-ttyname \ |