summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2019-05-29 14:05:08 -0500
committerJens Axboe <axboe@kernel.dk>2019-05-29 13:09:04 -0600
commitf8865bc65feced660a3075175200a60968187bba (patch)
tree36e25431d35b643269aeaba5b20d464ac9ec551b
parentb422aa11cc58e9786fa1e343aa2bfa6d7a394445 (diff)
liburing: export io_uring_queue_mmap symbol
io_uring_queue_mmap wasn't exported from the ld map file, meaning the linker gave it private, static linkage in the resulting shared object, as opposed to global linkage. This results in the symbol seemingly missing at link-time, despite the existence of the symbol in the library itself. Signed-off-by: Austin Seipp <aseipp@pobox.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r--src/liburing.map1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liburing.map b/src/liburing.map
index eb0e84a..39b0ca8 100644
--- a/src/liburing.map
+++ b/src/liburing.map
@@ -1,6 +1,7 @@
LIBURING_0.1 {
global:
io_uring_queue_init;
+ io_uring_queue_mmap;
io_uring_queue_exit;
io_uring_peek_cqe;
io_uring_wait_cqe;