MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_duplex_pipe

Function acl_duplex_pipe

lib_acl/src/stdlib/iostuff/acl_duplex_pipe.c:21–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19/* duplex_pipe - give me a duplex pipe or bust */
20
21int acl_duplex_pipe(ACL_FILE_HANDLE fds[2])
22{
23#if defined(HAS_DUPLEX_PIPE)
24 return (acl_pipe(fds));
25#else
26 return (acl_sane_socketpair(AF_UNIX, SOCK_STREAM, 0, fds));
27#endif
28}
29
30
31

Callers 3

pipe_initFunction · 0.85
acl_vstream_popenFunction · 0.85
acl_master_status_initFunction · 0.85

Calls 2

acl_pipeFunction · 0.85
acl_sane_socketpairFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…