diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-25 10:42:54 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-25 12:21:12 +0200 |
commit | 5b3a2abfb339738085dcd8d956b570b56d03b9ed (patch) | |
tree | 15c86c7fa62e651c6860f53dc875d0a56ed5f9dc /rt/Makefile | |
parent | 903e6f9960f6ad2ee9edd35fff979e2953445e08 (diff) | |
download | glibc-5b3a2abfb339738085dcd8d956b570b56d03b9ed.tar.gz glibc-5b3a2abfb339738085dcd8d956b570b56d03b9ed.tar.xz glibc-5b3a2abfb339738085dcd8d956b570b56d03b9ed.zip |
Linux: Move mq_send, mq_timedsend, __mq_timedsend_time64 to libc
The symbols were moved using scripts/move-symbol-to-libc.py. Reviewed-by: Adhemerva Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'rt/Makefile')
-rw-r--r-- | rt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rt/Makefile b/rt/Makefile index 0cfb4cb95b..eaf4a5a344 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -30,8 +30,6 @@ routines = \ librt-routines = \ librt-compat \ - mq_send \ - mq_timedsend \ mq_unlink \ timer_create \ timer_delete \ @@ -61,8 +59,10 @@ $(librt-routines-var) += \ mq_notify \ mq_open \ mq_receive \ + mq_send \ mq_setattr \ mq_timedreceive \ + mq_timedsend \ tests := tst-shm tst-timer tst-timer2 \ tst-aio tst-aio64 tst-aio2 tst-aio3 tst-aio4 tst-aio5 tst-aio6 \ |