xref: /linux/io_uring/eventfd.h (revision e812928be2ee1c2744adf20ed04e0ce1e2fc5c13)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 
3 struct io_ring_ctx;
4 int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg,
5 			unsigned int eventfd_async);
6 int io_eventfd_unregister(struct io_ring_ctx *ctx);
7 
8 void io_eventfd_signal(struct io_ring_ctx *ctx, bool cqe_event);
9