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:58 +0200 |
commit | 3fe3f8076e4e0d3f5cd27f85dc0aa76b2f625917 (patch) | |
tree | 405706ac72d5629cf38ae5845e755665382b29f6 /rt/Makefile | |
parent | 3353a5a4cfcdc6ef58e1ec036bd3f47ebcc16f3c (diff) | |
download | glibc-3fe3f8076e4e0d3f5cd27f85dc0aa76b2f625917.tar glibc-3fe3f8076e4e0d3f5cd27f85dc0aa76b2f625917.tar.gz glibc-3fe3f8076e4e0d3f5cd27f85dc0aa76b2f625917.tar.bz2 glibc-3fe3f8076e4e0d3f5cd27f85dc0aa76b2f625917.zip |
Linux: Move lio_listio, lio_listio64 from librt to libc
The symbols were moved using scripts/move-symbol-to-libc.py.
Placeholder symbols are needed on some architectures, to keep the
GLIBC_2.1 and GLIBC_2.4 symbol versions around.
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 3d930d1d26..5a5e45bfd2 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -30,8 +30,6 @@ routines = \ librt-routines = \ librt-compat \ - lio_listio \ - lio_listio64 \ mq_close \ mq_getattr \ mq_notify \ @@ -63,6 +61,8 @@ $(librt-routines-var) += \ aio_suspend \ aio_write \ aio_write64 \ + lio_listio \ + lio_listio64 \ tests := tst-shm tst-timer tst-timer2 \ tst-aio tst-aio64 tst-aio2 tst-aio3 tst-aio4 tst-aio5 tst-aio6 \ |