From 02aef1c3b85c7c6cabb129ad4ce2cd663eac6bfd Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 30 Mar 2010 16:50:06 +0200 Subject: [PATCH] kernel32: Increase the wineboot timeout. --- dlls/kernel32/process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c index 541c7943da6..251da4edbd6 100644 --- a/dlls/kernel32/process.c +++ b/dlls/kernel32/process.c @@ -1104,10 +1104,10 @@ void CDECL __wine_kernel_init(void) if (boot_events[0]) { - DWORD timeout = 30000, count = 1; + DWORD timeout = 2 * 60 * 1000, count = 1; if (boot_events[1]) count++; - if (!got_environment) timeout = 300000; /* initial prefix creation can take longer */ + if (!got_environment) timeout = 5 * 60 * 1000; /* initial prefix creation can take longer */ if (WaitForMultipleObjects( count, boot_events, FALSE, timeout ) == WAIT_TIMEOUT) ERR( "boot event wait timed out\n" ); CloseHandle( boot_events[0] ); -- 2.11.4.GIT