From 39e0ebd4fc66046bf733a47aaa899a556093ebc6 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 18 Apr 2019 08:32:06 -0600 Subject: Rename completion helpers We have io_uring_get_sqe() on the submission side, yet the completion side is named _completion. Rename as follows: io_uring_get_completion() io_uring_peek_cqe() iO_uring_wait_completion() io_uring_wait_cqe() This better tells the user what the _get variant does by calling it _peek instead, and we move to using _cqe() as the postfix instead of _completion. Signed-off-by: Jens Axboe --- examples/io_uring-test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/io_uring-test.c') diff --git a/examples/io_uring-test.c b/examples/io_uring-test.c index fe0098c..bbac3a7 100644 --- a/examples/io_uring-test.c +++ b/examples/io_uring-test.c @@ -67,9 +67,9 @@ int main(int argc, char *argv[]) done = 0; pending = ret; for (i = 0; i < pending; i++) { - ret = io_uring_wait_completion(&ring, &cqe); + ret = io_uring_wait_cqe(&ring, &cqe); if (ret < 0) { - fprintf(stderr, "io_uring_get_completion: %s\n", strerror(-ret)); + fprintf(stderr, "io_uring_wait_cqe: %s\n", strerror(-ret)); return 1; } -- cgit