diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-25 10:30:36 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-25 12:19:15 +0200 |
commit | 496919b12f2dc0733e215cc2f08266474c87719e (patch) | |
tree | be4b13d188f43171c767339865a5e56b1046257a /rt/Versions | |
parent | 32e750516c653bc3005aaef87124a587a7bef196 (diff) | |
download | glibc-496919b12f2dc0733e215cc2f08266474c87719e.tar.gz glibc-496919b12f2dc0733e215cc2f08266474c87719e.tar.xz glibc-496919b12f2dc0733e215cc2f08266474c87719e.zip |
Linux: Move aio_write, aio_write64 into libc
Both symbols have to be moved at the same time because they are intertwined for __WORDSIZE == 64. The treatment of this case is also changed to match more closely how the other files suppress the declaration of the *64 identifier. The symbols were moved using scripts/move-symbol-to-libc.py. Reviewed-by: Adhemerva 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 d54b9cc4bf..f2b4ced257 100644 --- a/rt/Versions +++ b/rt/Versions @@ -14,6 +14,8 @@ libc { aio_return64; aio_suspend; aio_suspend64; + aio_write; + aio_write64; %endif } GLIBC_2.2 { @@ -35,6 +37,8 @@ libc { aio_return64; aio_suspend; aio_suspend64; + aio_write; + aio_write64; %endif shm_open; shm_unlink; @@ -69,9 +73,9 @@ librt { aio_return64; aio_suspend; aio_suspend64; -%endif aio_write; aio_write64; +%endif lio_listio; lio_listio64; } |