diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-03-11 22:01:33 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-03-11 22:01:33 -0500 |
commit | 1141610a01c7b22050fe4d862e20f12a5a7c8414 (patch) | |
tree | 60bff939760a53e6894f1ca63f1616d296120c97 | |
parent | 0cbb43ebb1f115f844ee0deab8a965add19a2775 (diff) | |
download | gem5-1141610a01c7b22050fe4d862e20f12a5a7c8414.tar.xz |
Bump up NFS wait time in qdo (since this has been causing
problems in pool regressions).
util/qdo:
Bump up hardcoded NFS wait time from 45 sec to 90 sec (and
print threshold from 10 sec to 30 sec). Would be even
nicer to make these cmd-line params, but nobody would use
them anyway.
--HG--
extra : convert_revision : 1e9b3ad43a5dbf5e30758069e5a8cde3749cc1a6
-rwxr-xr-x | util/qdo | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -179,10 +179,10 @@ try: if output_dir: secs_waited = 0 - while not shell.dir_exists(output_dir) and secs_waited < 45: + while not shell.dir_exists(output_dir) and secs_waited < 90: time.sleep(5) secs_waited += 5 - if secs_waited > 10: + if secs_waited > 30: print "waited", secs_waited, "seconds for", output_dir # run command |