Sha256: f10c6a8382d956c43997900d425130fa16bcb2e535e549c5f73b1e77328cf112
Contents?: true
Size: 466 Bytes
Versions: 53
Compression:
Stored size: 466 Bytes
Contents
/* SPDX-License-Identifier: MIT */ #ifndef LIBURING_SYSCALL_H #define LIBURING_SYSCALL_H #include <signal.h> struct io_uring_params; /* * System calls */ extern int __sys_io_uring_setup(unsigned entries, struct io_uring_params *p); extern int __sys_io_uring_enter(int fd, unsigned to_submit, unsigned min_complete, unsigned flags, sigset_t *sig); extern int __sys_io_uring_register(int fd, unsigned int opcode, const void *arg, unsigned int nr_args); #endif
Version data entries
53 entries across 53 versions & 1 rubygems