From 3ceb15c1327e6bb6105a0dec97421308e5567f02 Mon Sep 17 00:00:00 2001 From: Jeff Moyer Date: Fri, 8 Feb 2019 13:32:21 -0500 Subject: Add sigmask parameter to io_uring_enter Update liburing and io_uring_enter.2 to match the kernel. Signed-off-by: Jeff Moyer Signed-off-by: Jens Axboe --- src/syscall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/syscall.c') diff --git a/src/syscall.c b/src/syscall.c index a9e648e..aa82c3b 100644 --- a/src/syscall.c +++ b/src/syscall.c @@ -33,8 +33,8 @@ int io_uring_setup(unsigned int entries, struct io_uring_params *p) } int io_uring_enter(int fd, unsigned int to_submit, unsigned int min_complete, - unsigned int flags) + unsigned int flags, sigset_t *sig, size_t sigsz) { return syscall(__NR_sys_io_uring_enter, fd, to_submit, min_complete, - flags, NULL, 0); + flags, sig, sigsz); } -- cgit