Exemplo n.º 1
0
 public static int io_uring_enter(int fd, uint to_submit, uint min_complete, uint flags, sigset_t *sig)
 {
     return((int)syscall(__NR_io_uring_enter, fd, to_submit, min_complete, flags, sig, NSIG / 8));
 }
Exemplo n.º 2
0
 public static extern int ppoll(pollfd *fds, ulong_t nfds, timespec *timeout, sigset_t *sigmask);
Exemplo n.º 3
0
 public static extern int epoll_pwait(int epfd, epoll_event *events, int maxevents, int timeout, sigset_t *sigmask);
Exemplo n.º 4
0
 public static extern int sigtimedwait([NativeTypeName("const sigset_t *")] sigset_t *__set, siginfo_t *__info, [NativeTypeName("const struct timespec *")] timespec *__timeout);
Exemplo n.º 5
0
 public static extern int pselect(int __nfds, fd_set *__readfds, fd_set *__writefds, fd_set *__exceptfds, [NativeTypeName("const struct timespec *")] timespec *__timeout, [NativeTypeName("const __sigset_t *")] sigset_t *__sigmask);
Exemplo n.º 6
0
 public static extern int sigwait([NativeTypeName("const sigset_t *")] sigset_t *__set, int *__sig);
Exemplo n.º 7
0
 public static extern int sigwaitinfo([NativeTypeName("const sigset_t *")] sigset_t *__set, siginfo_t *__info);
Exemplo n.º 8
0
 public static extern int sigsuspend([NativeTypeName("const sigset_t *")] sigset_t *__set);
Exemplo n.º 9
0
 public static extern int sigpending(sigset_t *__set);
Exemplo n.º 10
0
 public static extern int sigorset(sigset_t *__set, [NativeTypeName("const sigset_t *")] sigset_t *__left, [NativeTypeName("const sigset_t *")] sigset_t *__right);
Exemplo n.º 11
0
 public static extern int sigprocmask(int __how, [NativeTypeName("const sigset_t *")] sigset_t *__set, sigset_t *__oset);
Exemplo n.º 12
0
 public static extern int sigisemptyset([NativeTypeName("const sigset_t *")] sigset_t *__set);
Exemplo n.º 13
0
 public static extern int sigismember([NativeTypeName("const sigset_t *")] sigset_t *__set, int __signo);
Exemplo n.º 14
0
 public static extern int sigdelset(sigset_t *__set, int __signo);
Exemplo n.º 15
0
 public static extern int sigfillset(sigset_t *__set);
Exemplo n.º 16
0
 public static extern int sigemptyset(sigset_t *__set);