2019-01-08 06:51:07 -07:00
|
|
|
/*
|
|
|
|
|
* Will go away once libc support is there
|
|
|
|
|
*/
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
|
#include <sys/uio.h>
|
|
|
|
|
#include "io_uring.h"
|
|
|
|
|
|
|
|
|
|
#if defined(__x86_64)
|
|
|
|
|
#ifndef __NR_sys_io_uring_setup
|
|
|
|
|
#define __NR_sys_io_uring_setup 335
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef __NR_sys_io_uring_enter
|
|
|
|
|
#define __NR_sys_io_uring_enter 336
|
|
|
|
|
#endif
|
|
|
|
|
#else
|
|
|
|
|
#error "Arch not supported yet"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
int io_uring_setup(unsigned int entries, struct iovec *iovecs,
|
2019-01-10 09:32:41 -07:00
|
|
|
unsigned nr_iovecs, struct io_uring_params *p)
|
2019-01-08 06:51:07 -07:00
|
|
|
{
|
2019-01-10 09:32:41 -07:00
|
|
|
return syscall(__NR_sys_io_uring_setup, entries, iovecs, nr_iovecs, p);
|
2019-01-08 06:51:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int io_uring_enter(int fd, unsigned int to_submit, unsigned int min_complete,
|
|
|
|
|
unsigned int flags)
|
|
|
|
|
{
|
|
|
|
|
return syscall(__NR_sys_io_uring_enter, fd, to_submit, min_complete,
|
|
|
|
|
flags);
|
|
|
|
|
}
|