*** empty log message ***

svn path=/trunk/boinc/; revision=1822
This commit is contained in:
Karl Chen 2003-07-25 23:57:26 +00:00
parent 7c49dbee0f
commit fc9cc62570
1 changed files with 3 additions and 1 deletions

View File

@ -374,9 +374,11 @@ def wait_for_process_to_end(pid):
if is_pid_running(pid):
if verbose:
print " Waiting for process",pid,"to end: ",
sys.stdout.flush()
while is_pid_running(pid):
if verbose:
print '.',
sys.stdout.write('.')
sys.stdout.flush()
time.sleep(.5)
if verbose:
print ' ok'