diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-25 10:30:35 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-25 11:48:25 +0200 |
commit | d12506b2dbbeb259468e0f06e87a98174e69a743 (patch) | |
tree | 7dd428bde261bd9f75ab54c86696a8220f203ef9 /rt/Makefile | |
parent | 97ed4749becdc20481688ee074e90507ca3501dd (diff) | |
download | glibc-d12506b2dbbeb259468e0f06e87a98174e69a743.tar glibc-d12506b2dbbeb259468e0f06e87a98174e69a743.tar.gz glibc-d12506b2dbbeb259468e0f06e87a98174e69a743.tar.bz2 glibc-d12506b2dbbeb259468e0f06e87a98174e69a743.zip |
Linux: Move aio_init from librt into libc
This commit also moves the aio_misc and aio_sigquue helper,
so GLIBC_PRIVATE exports need to be added.
The symbol was moved using scripts/move-symbol-to-libc.py.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'rt/Makefile')
-rw-r--r-- | rt/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/Makefile b/rt/Makefile index 6c7728a318..048aacce86 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -32,12 +32,9 @@ librt-routines = \ aio_cancel \ aio_error \ aio_fsync \ - aio_misc \ - aio_notify \ aio_read \ aio_read64 \ aio_return \ - aio_sigqueue \ aio_suspend \ aio_write \ aio_write64 \ @@ -60,6 +57,9 @@ librt-routines = \ timer_settime \ $(librt-routines-var) += \ + aio_misc \ + aio_notify \ + aio_sigqueue \ tests := tst-shm tst-timer tst-timer2 \ tst-aio tst-aio64 tst-aio2 tst-aio3 tst-aio4 tst-aio5 tst-aio6 \ |