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 | 983f43b57bc347717aca85616cbce731c7494ca3 (patch) | |
tree | 00ac99fcdc97adf8ee089da057c3998c560362ba /rt/Versions | |
parent | 2da5f22fff639e891b9f516724683d9d7ad1511c (diff) | |
download | glibc-983f43b57bc347717aca85616cbce731c7494ca3.zip glibc-983f43b57bc347717aca85616cbce731c7494ca3.tar.gz glibc-983f43b57bc347717aca85616cbce731c7494ca3.tar.bz2 |
Linux: Move mq_open, __mq_open_2 from librt to libc
The symbols were moved using scripts/move-symbol-to-libc.py.
A placeholder symbol is required to keep the GLIBC_2.7 version.
Reviewed-by: Adhemerva Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'rt/Versions')
-rw-r--r-- | rt/Versions | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/rt/Versions b/rt/Versions index b3c9bba..d28a7f6 100644 --- a/rt/Versions +++ b/rt/Versions @@ -29,6 +29,7 @@ libc { mq_close; mq_getattr; mq_notify; + mq_open; mq_setattr; %endif } @@ -38,8 +39,14 @@ libc { lio_listio64; %endif } + GLIBC_2.7 { +%if PTHREAD_IN_LIBC + __mq_open_2; +%endif + } GLIBC_2.34 { %if PTHREAD_IN_LIBC + __mq_open_2; aio_cancel; aio_cancel64; aio_init; @@ -60,6 +67,7 @@ libc { mq_close; mq_getattr; mq_notify; + mq_open; mq_setattr; %endif shm_open; @@ -115,9 +123,9 @@ librt { mq_close; mq_getattr; mq_notify; + mq_open; mq_setattr; %endif - mq_open; mq_receive; mq_send; mq_timedreceive; @@ -133,6 +141,10 @@ librt { %endif } GLIBC_2.7 { +%if PTHREAD_IN_LIBC + __librt_version_placeholder; +%else __mq_open_2; +%endif } } |