Files
mosh/third/libstddjb/selfpipe-internal.h
T
Quentin Smith 77f3a9073f Import selfpipe code from skalibs 1.2.5
[andersk@mit.edu: Move code to new third/libstddjb directory]
2012-03-07 03:05:37 -05:00

29 lines
364 B
C

/* ISC license. */
/* MT-unsafe */
#ifndef SELFPIPE_INTERNAL_H
#define SELFPIPE_INTERNAL_H
#include <signal.h>
#include "sysdeps.h"
extern sigset_t selfpipe_caught ;
#ifdef HASSIGNALFD
extern int selfpipe_fd ;
#else
#include "sig.h"
extern int selfpipe[2] ;
#define selfpipe_fd selfpipe[0]
extern struct skasigaction const selfpipe_ssa ;
#endif
#endif