blob: 48f182a18e03181365841cc703908411b3ca6c88 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* ISC license. */
#include <skalibs/sysdeps.h>
#ifdef SKALIBS_HASPIPE2
#include <skalibs/nonposix.h>
#include <unistd.h>
#include <fcntl.h>
#include <skalibs/djbunix.h>
int pipe_internal (int *p, unsigned int flags)
{
return pipe2(p, ((flags & DJBUNIX_FLAG_COE) ? O_CLOEXEC : 0) | ((flags & DJBUNIX_FLAG_NB) ? O_NONBLOCK : 0)) ;
}
#else
#include <unistd.h>
#include <errno.h>
#include <skalibs/djbunix.h>
int pipe_internal (int *p, unsigned int flags)
{
int pi[2] ;
if (pipe(pi) < 0) return -1 ;
if (flags & DJBUNIX_FLAG_COE)
if ((coe(pi[0]) < 0) || (coe(pi[1]) < 0)) goto err ;
if (flags & DJBUNIX_FLAG_NB)
if ((ndelay_on(pi[0]) < 0) || (ndelay_on(pi[1]) < 0)) goto err ;
p[0] = pi[0] ; p[1] = pi[1] ;
return 0 ;
err:
{
int e = errno ;
fd_close(pi[1]) ;
fd_close(pi[0]) ;
errno = e ;
}
return -1 ;
}
#endif
|