diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2015-11-03 16:03:56 -0200 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-05-18 18:06:47 -0300 |
commit | 3d0ad5a8dfb7b8dd862108970a62c2c3ce9ddd72 (patch) | |
tree | 0a91c8fe9078c74a1504479ffcd3d808488673ce /nptl | |
parent | ebfdb12bf0b6a8eccbee28335d0e6297d8b874d1 (diff) | |
download | glibc-3d0ad5a8dfb7b8dd862108970a62c2c3ce9ddd72.tar glibc-3d0ad5a8dfb7b8dd862108970a62c2c3ce9ddd72.tar.gz glibc-3d0ad5a8dfb7b8dd862108970a62c2c3ce9ddd72.tar.bz2 glibc-3d0ad5a8dfb7b8dd862108970a62c2c3ce9ddd72.zip |
posix: Consolidate Linux nanosleep syscall
This patch consolidates the nanosleep Linux syscall generation on
sysdeps/unix/sysv/linux/nanosleep.c. It basically removes it from
architectures auto-generation list.
Checked on i686-linux-gnu, x86_64-linux-gnu, x86_64-linux-gnux32,
arch64-linux-gnu, arm-linux-gnueabihf, powerpc64le-linux-gnu,
sparc64-linux-gnu, and sparcv9-linux-gnu.
* nptl/Makefile (CFLAGS-nanosleep.c): New rule.
* posix/Makefile (CFLAGS-nanosleep.c): Likewise.
* sysdeps/unix/sysv/linux/nanosleep.c: New file.
* sysdeps/unix/sysv/linux/syscalls.list: Remove nanosleep from
auto-generated list.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index d39bb50847..cdf69bd033 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -216,6 +216,7 @@ CFLAGS-sendmsg.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-close.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-read.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-write.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-nanosleep.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-pt-system.c = -fexceptions |