blob: 7d56224d5b0a525c4c5fb2a8d96386340268a31a [file] [log] [blame]
Jens Axboe96144ea2019-12-01 11:21:39 -07001#ifndef LIBURING_SYSCALL_H
2#define LIBURING_SYSCALL_H
3
4/*
5 * System calls
6 */
7extern int __sys_io_uring_setup(unsigned entries, struct io_uring_params *p);
8extern int __sys_io_uring_enter(int fd, unsigned to_submit,
9 unsigned min_complete, unsigned flags, sigset_t *sig);
10extern int __sys_io_uring_register(int fd, unsigned int opcode, const void *arg,
11 unsigned int nr_args);
12
13#endif