diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-09-26 03:59:31 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-09-26 05:27:44 -0600 |
commit | 2b5dc1da95a3487a3eafa9a814735c2c63637588 (patch) | |
tree | 6201a9b1e3eb7854df4e6777a215d421cbd075de /src/liburing.map | |
parent | 6d3380256165537291377c3c0b75ed30711f22e1 (diff) | |
download | liburing-2b5dc1da95a3487a3eafa9a814735c2c63637588.tar.gz liburing-2b5dc1da95a3487a3eafa9a814735c2c63637588.tar.bz2 |
liburing.map: move newer exported symbols to 0.2
We've added three exported functions since 0.1. We should do the
right thing and add them under the next version specifically.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'src/liburing.map')
-rw-r--r-- | src/liburing.map | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/liburing.map b/src/liburing.map index 9a2e870..fe955d6 100644 --- a/src/liburing.map +++ b/src/liburing.map @@ -5,9 +5,6 @@ LIBURING_0.1 { io_uring_queue_exit; io_uring_peek_cqe; io_uring_wait_cqe; - io_uring_peek_batch_cqe; - io_uring_wait_cqe_timeout; - io_uring_wait_cqes_timeout; io_uring_submit; io_uring_submit_and_wait; io_uring_get_sqe; @@ -25,3 +22,10 @@ LIBURING_0.1 { *; }; + +LIBURING_0.2 { + global: + io_uring_peek_batch_cqe; + io_uring_wait_cqe_timeout; + io_uring_wait_cqes_timeout; +} LIBURING_0.1; |