diff options
author | Thomas White <taw@physics.org> | 2014-12-10 12:05:26 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-12-10 12:05:55 +0100 |
commit | dd5e1cf2cbdf3dab50348ed6ca63356c656a8e64 (patch) | |
tree | ec0bb24847fbf35a330241dd2414a2dbe5b794b9 /src/im-sandbox.c | |
parent | c6fe9d646efed22502246e02a3c98ef5a2ae8d23 (diff) |
Don't shut down worker process just because main process takes a while to produce an event
Reported by Takanori Nakane
Diffstat (limited to 'src/im-sandbox.c')
-rw-r--r-- | src/im-sandbox.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/im-sandbox.c b/src/im-sandbox.c index 6970a14f..1e567fb6 100644 --- a/src/im-sandbox.c +++ b/src/im-sandbox.c @@ -423,8 +423,10 @@ static void run_work(const struct index_args *iargs, rval = read_fpe_data(&bd); } else { ERROR("No data sent from main process..\n"); - rval = 1; - error = 1; + /* Not actually an error condition. The main + * process might just be taking a while to read + * the index data for a large multi-event file. + */ } } while ( !rval ); |