mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
c43203154d
Most of this code is basically self contained, move it out of the core io_uring file to bring a bit more separation to the registration related bits. This moves another ~10% of the code into register.c. Signed-off-by: Jens Axboe <axboe@kernel.dk>
8 lines
218 B
C
8 lines
218 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef IORING_REGISTER_H
|
|
#define IORING_REGISTER_H
|
|
|
|
int io_eventfd_unregister(struct io_ring_ctx *ctx);
|
|
int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id);
|
|
|
|
#endif
|