Lines Matching +full:send +full:- +full:flush +full:- +full:out +full:- +full:sequence
1 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
34 .\" OR OTHERWISE) RISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
57 For instance, to time-stamp the output of a program,
66 the in-memory formatting capabilities of
83 Low-Level Process Creation \(em Execl and Execv
115 but this is seldom used except as a place-holder.
116 If the command takes arguments, they are strung out after
201 execl("/bin/sh", "sh", "-c", commandline, NULL);
206 .UL -c
241 is non-zero; it is the process number of the child.
246 execl("/bin/sh", "sh", "-c", cmd, NULL); /* in child */
261 returns non-zero
267 .UL -1 ).
308 encodes in its low-order eight bits
310 it is 0 for normal termination and non-zero to indicate
334 that must come out before output from the child,
335 the parent must flush its buffers
378 if (stat == -1)
427 will send their data to that process
444 These closes are necessary to make end-of-file tests work properly.
470 execl("/bin/sh", "sh", "-c", cmd, 0);
473 if (popen_pid == -1)
479 The sequence of
514 A similar sequence of operations takes place
531 is that only a bounded number of unwaited-for children
551 while ((r = wait(&status)) != popen_pid && r != -1);
552 if (r == -1)
553 status = -1;