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:55:27 +0200 |
commit | 32e750516c653bc3005aaef87124a587a7bef196 (patch) | |
tree | a90a00b58b191b7691cc2252ac4cf81b0aa50a74 /rt/Makefile | |
parent | 406fb327fb3b617d6abdd54bed2967c2a9f384c4 (diff) | |
download | glibc-32e750516c653bc3005aaef87124a587a7bef196.tar.gz glibc-32e750516c653bc3005aaef87124a587a7bef196.tar.xz glibc-32e750516c653bc3005aaef87124a587a7bef196.zip |
Linux: Move aio_suspend, aio_suspend64, __aio_suspend_time64 to libc
The symbols were moved using scripts/move-symbol-to-libc.py. There is a minor oddity here: This is generic code shared with Hurd, and Hurd does not have time64 support. This is why the versioned_symbol export for __aio_suspend_time64 is restricted to the PTHREAD_IN_LIBC code. Reviewed-by: Adhemerva Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'rt/Makefile')
-rw-r--r-- | rt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/Makefile b/rt/Makefile index 29c9aa5f05..a373cd06c7 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -29,7 +29,6 @@ routines = \ shm_unlink \ librt-routines = \ - aio_suspend \ aio_write \ aio_write64 \ librt-compat \ @@ -63,6 +62,7 @@ $(librt-routines-var) += \ aio_read64 \ aio_return \ aio_sigqueue \ + aio_suspend \ tests := tst-shm tst-timer tst-timer2 \ tst-aio tst-aio64 tst-aio2 tst-aio3 tst-aio4 tst-aio5 tst-aio6 \ |