From 44be65d991810251e3ca3a55c19604131a1918fc Mon Sep 17 00:00:00 2001 From: Jean-loup Gailly Date: Sat, 25 Dec 2010 12:27:55 +0100 Subject: [PATCH] Distributed engine: Use larger receive queue to allow longer time settings --- distributed/protocol.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/distributed/protocol.c b/distributed/protocol.c index a590532..cd360d9 100644 --- a/distributed/protocol.c +++ b/distributed/protocol.c @@ -641,9 +641,9 @@ get_replies(double time_limit, int min_replies) assert(reply_count > 0); } -/* In a 30s move with at least 5ms per genmoves we get at most - * 6000 genmoves per slave. */ -#define MAX_GENMOVES_PER_SLAVE 6000 +/* In a 5mn move with at least 5ms per genmoves we get at most + * 300*200=60000 genmoves per slave. */ +#define MAX_GENMOVES_PER_SLAVE 60000 /* Allocate the receive queue, and create the slave and proxy threads. * max_buf_size and the merge-related fields of default_sstate must -- 2.11.4.GIT