diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-21 08:25:15 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-21 08:25:15 +0200 |
commit | f6b6e148695aed6bfb8211953981a87ffe17343f (patch) | |
tree | 4b630d9952b1104f25a45f39c21473bb9525c4a3 /rt/Versions | |
parent | c2059edce20c124d1a99f1a94cc52e83b77a917a (diff) | |
download | glibc-f6b6e148695aed6bfb8211953981a87ffe17343f.zip glibc-f6b6e148695aed6bfb8211953981a87ffe17343f.tar.gz glibc-f6b6e148695aed6bfb8211953981a87ffe17343f.tar.bz2 |
rt: Lexicographically sort Versions file; librt-routines in Makefile
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'rt/Versions')
-rw-r--r-- | rt/Versions | 45 |
1 files changed, 33 insertions, 12 deletions
diff --git a/rt/Versions b/rt/Versions index 84d1345..f151f85 100644 --- a/rt/Versions +++ b/rt/Versions @@ -1,22 +1,43 @@ librt { GLIBC_2.1 { - # AIO functions. - aio_cancel; aio_cancel64; aio_error; aio_error64; aio_fsync; aio_fsync64; - aio_init; aio_read; aio_read64; aio_return; aio_return64; aio_suspend; - aio_suspend64; aio_write; aio_write64; lio_listio; lio_listio64; + aio_cancel; + aio_cancel64; + aio_error; + aio_error64; + aio_fsync; + aio_fsync64; + aio_init; + aio_read; + aio_read64; + aio_return; + aio_return64; + aio_suspend; + aio_suspend64; + aio_write; + aio_write64; + lio_listio; + lio_listio64; } GLIBC_2.2 { - # s* - shm_open; shm_unlink; - - # t* - timer_create; timer_delete; timer_getoverrun; timer_gettime; + shm_open; + shm_unlink; + timer_create; + timer_delete; + timer_getoverrun; + timer_gettime; timer_settime; } GLIBC_2.3.4 { - # m* - mq_open; mq_close; mq_unlink; mq_getattr; mq_setattr; - mq_notify; mq_send; mq_receive; mq_timedsend; mq_timedreceive; + mq_close; + mq_getattr; + mq_notify; + mq_open; + mq_receive; + mq_send; + mq_setattr; + mq_timedreceive; + mq_timedsend; + mq_unlink; } GLIBC_2.7 { __mq_open_2; |