Lines Matching refs:processes
2 @c %MENU% How to create processes and run other programs
9 processes executing the same program, but each process has its own copy
16 process} which explicitly arranged to create it. The processes created
17 by a given parent are called its @dfn{child processes}. A child
21 child processes. Actually, there are three distinct operations
130 This section gives an overview of processes and of the steps involved in
138 A new processes is created when one of the functions
140 (The @code{system} and @code{popen} also create new processes internally.)
147 After forking a child process, both the parent and child processes
162 Having several processes run the same program is only occasionally
196 contrast to processes, threads are never waited for explicitly, so a
263 processes and both see @code{fork} return, but with different values: it
274 user already has too many processes running. This means exceeding the
299 associated with each descriptor is shared by both processes;
590 from the other eligible child processes, you need to call @code{waitpid}
598 processes as well as processes that have terminated.
612 status is reported. If there are child processes but none of them is
631 There are no child processes to wait for, or the specified @var{pid}
669 child processes that have been stopped as well as those that have
713 all child processes that have terminated, without ever waiting. This
878 would leave two processes running the original program. Instead, the