mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 00:21:34 +00:00
8 lines
158 B
C
8 lines
158 B
C
|
#include <sys/signalfd.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int signalfd(int fd, const sigset_t *sigs, int flags)
|
||
|
{
|
||
|
return syscall3(__NR_signalfd, fd, (long)sigs, 8);
|
||
|
}
|