Searched defs:pdfrom (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/ypcmd/ypupdated/
H A Dopenchild.c76 int pdfrom[2]; local
83 if (pipe(pdfrom) < 0) {
92 * child: read from pdto[0], write into pdfrom[1]
97 (void) dup(pdfrom[1]);
115 * parent: write into pdto[1], read from pdfrom[0]
119 *ffrom = fdopen(pdfrom[0], "r");
120 (void) close(pdfrom[1]);
130 (void) close(pdfrom[0]);
131 (void) close(pdfrom[1]);
/illumos-gate/usr/src/cmd/keyserv/
H A Dupdate.c153 int pdfrom[2]; local
159 if (pipe(pdfrom) < 0) {
172 * child: read from pdto[0], write into pdfrom[1]
177 (void) dup(pdfrom[1]);
189 * parent: write into pdto[1], read from pdfrom[0]
193 *ffrom = fdopen(pdfrom[0], "r");
194 (void) close(pdfrom[1]);
203 (void) close(pdfrom[0]);
204 (void) close(pdfrom[1]);

Completed in 45 milliseconds