mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=1822
This commit is contained in:
parent
7c49dbee0f
commit
fc9cc62570
|
@ -374,9 +374,11 @@ def wait_for_process_to_end(pid):
|
||||||
if is_pid_running(pid):
|
if is_pid_running(pid):
|
||||||
if verbose:
|
if verbose:
|
||||||
print " Waiting for process",pid,"to end: ",
|
print " Waiting for process",pid,"to end: ",
|
||||||
|
sys.stdout.flush()
|
||||||
while is_pid_running(pid):
|
while is_pid_running(pid):
|
||||||
if verbose:
|
if verbose:
|
||||||
print '.',
|
sys.stdout.write('.')
|
||||||
|
sys.stdout.flush()
|
||||||
time.sleep(.5)
|
time.sleep(.5)
|
||||||
if verbose:
|
if verbose:
|
||||||
print ' ok'
|
print ' ok'
|
||||||
|
|
Loading…
Reference in New Issue