diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-01-18 06:10:40 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-01-18 07:00:14 -0700 |
commit | 3640699bea043bed436c3af9ddc5b26fe23ced7a (patch) | |
tree | c51e78e318e1f4f5966ec073cda7b194675354b6 /test | |
parent | 213d6f39efcfc4a6758d50b383a699b98190aad7 (diff) |
Switch to IORING_OP_POLL_ADD/REMOVE
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test')
-rw-r--r-- | test/poll-cancel.c | 4 | ||||
-rw-r--r-- | test/poll.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/poll-cancel.c b/test/poll-cancel.c index ce82c60..3c62f18 100644 --- a/test/poll-cancel.c +++ b/test/poll-cancel.c @@ -38,7 +38,7 @@ int main(int argc, char *argv[]) return 1; } - io_uring_prep_poll(sqe, pipe1[0], POLLIN); + io_uring_prep_poll_add(sqe, pipe1[0], POLLIN); io_uring_sqe_set_data(sqe, sqe); addr = sqe; @@ -54,7 +54,7 @@ int main(int argc, char *argv[]) return 1; } - io_uring_prep_poll_cancel(sqe, addr); + io_uring_prep_poll_remove(sqe, addr); io_uring_sqe_set_data(sqe, sqe); ret = io_uring_submit(&ring); diff --git a/test/poll.c b/test/poll.c index 79788f4..c3800d6 100644 --- a/test/poll.c +++ b/test/poll.c @@ -48,7 +48,7 @@ int main(int argc, char *argv[]) return 1; } - io_uring_prep_poll(sqe, pipe1[0], POLLIN); + io_uring_prep_poll_add(sqe, pipe1[0], POLLIN); ret = io_uring_submit(&cring); if (ret <= 0) { @@ -91,7 +91,7 @@ int main(int argc, char *argv[]) return 1; } - io_uring_prep_poll(sqe, pipe2[0], POLLIN); + io_uring_prep_poll_add(sqe, pipe2[0], POLLIN); io_uring_sqe_set_data(sqe, sqe); ret = io_uring_submit(&pring); |