summaryrefslogtreecommitdiff
path: root/src/libstddjb/selfpipe_init.c
blob: bd26d2f7184e10f7df2608245f6b53428f834709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ISC license. */

/* MT-unsafe */

#include <errno.h>
#include <signal.h>
#include <skalibs/sysdeps.h>
#include "selfpipe-internal.h"
#include <skalibs/selfpipe.h>

#ifdef SKALIBS_HASSIGNALFD
#include <sys/signalfd.h>
#else
#include <skalibs/djbunix.h>
#endif

int selfpipe_init (void)
{
  if (selfpipe_fd >= 0) return (errno = EBUSY, -1) ;
  sigemptyset(&selfpipe_caught) ;
#ifdef SKALIBS_HASSIGNALFD
  selfpipe_fd = signalfd(-1, &selfpipe_caught, SFD_NONBLOCK | SFD_CLOEXEC) ;
#else
  if (pipenbcoe(selfpipe) < 0) return -1 ;
#endif
  return selfpipe_fd ;
}