Functions | |
def | pid_exists |
PID. | |
def | wait_pid |
def rocon_python_utils.system.pid.pid_exists | ( | pid | ) |
def rocon_python_utils.system.pid.wait_pid | ( | pid, | |
timeout = None |
|||
) |
Wait for process with pid 'pid' to terminate and return its exit status code as an integer. If pid is not a children of os.getpid() (current process) just waits until the process disappears and return None. If pid does not exist at all return None immediately. Raise TimeoutExpiredError on timeout expired (if specified).