diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2015-11-04 10:40:20 -0200 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-05-18 18:06:47 -0300 |
commit | 332e01c6276e05ece5953007c98aa84725c4fda4 (patch) | |
tree | be3d0853b7cf11598b10183dd50108e2d4062f3b /rt | |
parent | a5fdd305970adc9b245f97dd18ff813efea36484 (diff) | |
download | glibc-332e01c6276e05ece5953007c98aa84725c4fda4.tar.gz glibc-332e01c6276e05ece5953007c98aa84725c4fda4.tar.xz glibc-332e01c6276e05ece5953007c98aa84725c4fda4.zip |
posix: Consolidate Linux mq_timedsend syscall
This patch consolidates the mq_timedsend Linux syscall generation on sysdeps/unix/sysv/linux/mq_timedsend.c. It basically removes it from architecture 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. * rt/Makefile (CFLAGS-mq_timedsend.c): New flag. * sysdeps/unix/sysv/linux/mq_timedsend.c: New file. * sysdeps/unix/sysv/linux/syscalls.list (mq_timedsend): Remove from auto-generation list.
Diffstat (limited to 'rt')
-rw-r--r-- | rt/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rt/Makefile b/rt/Makefile index 0ffa12db4c..9740dc2ad8 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -62,6 +62,7 @@ include ../Rules CFLAGS-aio_suspend.c = -fexceptions CFLAGS-mq_timedreceive.c = -fexceptions -fasynchronous-unwind-tables +CFLAGS-mq_timedsend.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-clock_nanosleep.c = -fexceptions -fasynchronous-unwind-tables CFLAGS-librt-cancellation.c = -fasynchronous-unwind-tables |