Searched refs:errpipe (Results 1 – 1 of 1) sorted by relevance
/external/ltp/pan/ |
D | ltp-pan.c | 912 int errpipe[2]; /* way to communicate to parent that the tag */ in run_child() local 943 if (pipe(errpipe) < 0) { in run_child() 969 close(errpipe[0]); in run_child() 970 close(errpipe[1]); in run_child() 976 close(errpipe[0]); in run_child() 977 fcntl(errpipe[1], F_SETFD, 1); /* close the pipe if we succeed */ in run_child() 999 WRITE_OR_DIE(errpipe[1], &errlen, in run_child() 1001 WRITE_OR_DIE(errpipe[1], errbuf, errlen); in run_child() 1010 WRITE_OR_DIE(errpipe[1], &errlen, in run_child() 1012 WRITE_OR_DIE(errpipe[1], errbuf, errlen); in run_child() [all …]
|