Searched refs:expected_pid (Results 1 – 2 of 2) sorted by relevance
/third_party/ltp/testcases/kernel/containers/pidns/ |
D | pidns16.c | 61 pid_t expected_pid; in child_signal_handler() local 67 expected_pid = PARENT_PID; in child_signal_handler() 70 expected_pid = CHILD_PID; in child_signal_handler() 77 if (si->si_pid == expected_pid) in child_signal_handler() 79 expected_pid); in child_signal_handler() 82 " expecting pid %d", si->si_pid, expected_pid); in child_signal_handler()
|
/third_party/python/Lib/asyncio/ |
D | unix_events.py | 981 def _do_waitpid(self, expected_pid): argument 1061 def _do_waitpid(self, expected_pid): argument 1062 assert expected_pid > 0 1065 pid, status = os.waitpid(expected_pid, os.WNOHANG) 1069 pid = expected_pid 1082 expected_pid, returncode) 1280 def _do_waitpid(self, expected_pid): argument 1281 assert expected_pid > 0 1284 pid, status = os.waitpid(expected_pid, os.WNOHANG) 1288 pid = expected_pid [all …]
|