Lines Matching full:waitpid
390 stores the status returned by os.waitpid. You can interpret this using
409 # status returned by os.waitpid
1147 pid, status = os.waitpid(self.pid, 0)
1181 # of waitpid to # get status of a defunct process.
1189 pid, status = os.waitpid(self.pid, waitpid_options)
1195 'process. Did someone else call waitpid() ' +
1202 # If waitpid() returns 0 it means that no child process
1207 pid, status = os.waitpid(self.pid, waitpid_options)
1213 'process. Did someone else call waitpid() ' +
1218 # If pid is still 0 after two calls to waitpid() then the process
1220 # Irix which seems to require a blocking call on waitpid or select,