diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-25 10:30:36 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-25 11:49:55 +0200 |
commit | 1a7d0dedf0c579ff4c4146a861228bd381178905 (patch) | |
tree | b656ae3faae17b9f36c6a2fff9dcd5861078bf45 /rt/Versions | |
parent | 3df6dcc5c75b40d0ac0a9d22967da0a5a2b8df5c (diff) | |
download | glibc-1a7d0dedf0c579ff4c4146a861228bd381178905.tar glibc-1a7d0dedf0c579ff4c4146a861228bd381178905.tar.gz glibc-1a7d0dedf0c579ff4c4146a861228bd381178905.tar.bz2 glibc-1a7d0dedf0c579ff4c4146a861228bd381178905.zip |
Linux: Move aio_error, aio_error64 into libc
The symbols were moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'rt/Versions')
-rw-r--r-- | rt/Versions | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rt/Versions b/rt/Versions index 402a1188e7..aae1d3c47d 100644 --- a/rt/Versions +++ b/rt/Versions @@ -4,6 +4,8 @@ libc { aio_init; aio_cancel; aio_cancel64; + aio_error; + aio_error64; %endif } GLIBC_2.2 { @@ -15,6 +17,8 @@ libc { aio_cancel; aio_cancel64; aio_init; + aio_error; + aio_error64; %endif shm_open; shm_unlink; @@ -38,9 +42,9 @@ librt { %if !PTHREAD_IN_LIBC aio_cancel; aio_cancel64; -%endif aio_error; aio_error64; +%endif aio_fsync; aio_fsync64; %if !PTHREAD_IN_LIBC |