diff options
author | Thomas White <taw@physics.org> | 2012-01-20 22:59:59 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:44 +0100 |
commit | 0ae59a0d41043da6e1f5a6eecbc6c5cb6cda418a (patch) | |
tree | 6e26dc2d309e3b36194b652f9ab7c4e55ab6b1b8 /libcrystfel | |
parent | 6e66a23c340e9541cf4c2661342d8a149c4d8f0d (diff) |
Increase DirAx and MOSFLM timeouts to 30 sec
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/dirax.c | 2 | ||||
-rw-r--r-- | libcrystfel/src/mosflm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/dirax.c b/libcrystfel/src/dirax.c index bb1cb808..1abfd64c 100644 --- a/libcrystfel/src/dirax.c +++ b/libcrystfel/src/dirax.c @@ -499,7 +499,7 @@ void run_dirax(struct image *image) FD_ZERO(&fds); FD_SET(dirax->pty, &fds); - tv.tv_sec = 10; + tv.tv_sec = 30; tv.tv_usec = 0; sval = select(dirax->pty+1, &fds, NULL, NULL, &tv); diff --git a/libcrystfel/src/mosflm.c b/libcrystfel/src/mosflm.c index 5df5af21..375d3f3f 100644 --- a/libcrystfel/src/mosflm.c +++ b/libcrystfel/src/mosflm.c @@ -576,7 +576,7 @@ void run_mosflm(struct image *image, UnitCell *cell) FD_ZERO(&fds); FD_SET(mosflm->pty, &fds); - tv.tv_sec = 10; + tv.tv_sec = 30; tv.tv_usec = 0; sval = select(mosflm->pty+1, &fds, NULL, NULL, &tv); |