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 | 1a5a653be2f95d4d9485d08672dc5083c74c39d8 (patch) | |
tree | 690213469932b9a7b1ad7d99a93924761ab0d601 /rt/Makefile | |
parent | 5b3a2abfb339738085dcd8d956b570b56d03b9ed (diff) | |
download | glibc-1a5a653be2f95d4d9485d08672dc5083c74c39d8.tar.gz glibc-1a5a653be2f95d4d9485d08672dc5083c74c39d8.tar.xz glibc-1a5a653be2f95d4d9485d08672dc5083c74c39d8.zip |
Linux: Move mq_unlink from librt to libc
The symbol was moved using scripts/move-symbol-to-libc.py. A placeholder symbol is needed on some architectures for the GLIBC_2.3.4 version. Reviewed-by: Adhemerva Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'rt/Makefile')
-rw-r--r-- | rt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/Makefile b/rt/Makefile index eaf4a5a344..ca3f9e162e 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -30,7 +30,6 @@ routines = \ librt-routines = \ librt-compat \ - mq_unlink \ timer_create \ timer_delete \ timer_getoverr \ @@ -63,6 +62,7 @@ $(librt-routines-var) += \ mq_setattr \ mq_timedreceive \ mq_timedsend \ + mq_unlink \ tests := tst-shm tst-timer tst-timer2 \ tst-aio tst-aio64 tst-aio2 tst-aio3 tst-aio4 tst-aio5 tst-aio6 \ |