예제 #1
0
파일: app_posix.py 프로젝트: Qointum/pypy
    def wait4(pid, options):
        """ wait4(pid, options) -> (pid, status, rusage)

        Wait for completion of the child process "pid" and provides resource usage information
        """
        from _pypy_wait import wait4
        return wait4(pid, options)
예제 #2
0
파일: app_posix.py 프로젝트: ieure/pypy
    def wait4(pid, options):
        """ wait4(pid, options) -> (pid, status, rusage)

        Wait for completion of the child process "pid" and provides resource usage informations
        """
        from _pypy_wait import wait4
        return wait4(pid, options)