xref: /linux/io_uring/eventfd.h (revision 69050f8d6d075dc01af7a5f2f550a8067510366f)
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