Make wineserver exit immediately After cl.exe exited, wineserver waits for 3 seconds to terminate. Actually this is not necessary. So, let's make wineserver terminate immediately after cl.exe has finished. This patch makes each task of cl.exe 3 seconds faster. I've confirmed that we can compile chrome with this change. BUG=http://b/13497887 Change-Id: I266e9bc6df40331c0e05eed3e99b69ca93cddf9f
diff --git a/server/main.c b/server/main.c index 7aed338..2ec98b9 100644 --- a/server/main.c +++ b/server/main.c
@@ -41,7 +41,7 @@ /* command-line options */ int debug_level = 0; int foreground = 0; -timeout_t master_socket_timeout = 3 * -TICKS_PER_SEC; /* master socket timeout, default is 3 seconds */ +timeout_t master_socket_timeout = 0; const char *server_argv0; /* parse-line args */