skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

selfpipe.h (323B)


      1 /* ISC license. */
      2 
      3 #ifndef SKALIBS_SELFPIPE_H
      4 #define SKALIBS_SELFPIPE_H
      5 
      6 #include <signal.h>
      7 
      8 extern int selfpipe_init (void) ;
      9 extern int selfpipe_trap (int) ;
     10 extern int selfpipe_trapset (sigset_t const *) ;
     11 extern int selfpipe_fd (void) ;
     12 extern int selfpipe_read (void) ;
     13 extern void selfpipe_finish (void) ;
     14 
     15 #endif