Cider Isn't Darwin Emulation, Really
Something went wrong. Try again.
12345678910111213141516171819202122232425#include "./sys/timerfd.h"#include "../errno.h"#include "../base.h"#include <linux-syscalls/linux.h>
extern long cerror(int __err);
VISIBLEint timerfd_settime (int __fd, int __flags, const struct itimerspec* __utmr, struct itimerspec* __otmr){ int rv;
rv = LINUX_SYSCALL(__NR_timerfd_settime, __fd, __flags, __utmr, __otmr); if (rv < 0) { cerror(errno_linux_to_bsd(-rv)); return -1; }
return rv;}