From 1abe79c7a572fcccccc20e8845291b19084c926b Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Thu, 4 May 2006 17:39:00 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=10098 --- checkin_notes | 9 +++++++++ client/win/win_service.cpp | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index 761e90902d..aa6da58501 100755 --- a/checkin_notes +++ b/checkin_notes @@ -4473,3 +4473,12 @@ David 3 May 2006 result.inc sched/ feeder.C + +Rom 4 May 2006 + - Bug Fix: Increase the WaitHint from 10 seconds to 30 seconds so + the service mode install isn't so jumpy when it takes awhile + to shutdown. + + client/win/ + win_service.cpp + diff --git a/client/win/win_service.cpp b/client/win/win_service.cpp index afd9a08e2b..5a58bf23e1 100644 --- a/client/win/win_service.cpp +++ b/client/win/win_service.cpp @@ -114,7 +114,7 @@ VOID WINAPI service_ctrl(DWORD dwCtrlCode) // error. case SERVICE_CONTROL_STOP: case SERVICE_CONTROL_SHUTDOWN: - ReportStatus(SERVICE_STOP_PENDING, ERROR_SUCCESS, 10000); + ReportStatus(SERVICE_STOP_PENDING, ERROR_SUCCESS, 30000); quit_client(); return;