From: Bill Stoddard Date: Tue, 2 Apr 2002 14:48:54 +0000 (+0000) Subject: Win32: tweak some messages X-Git-Tag: 2.0.35~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d94a82bc2027b0e85be5bf45fb9b33cb04cc752;p=thirdparty%2Fapache%2Fhttpd.git Win32: tweak some messages git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94387 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index e1694185e96..36a0eea34f6 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -1334,7 +1334,7 @@ static void child_main() /* Give busy worker threads a chance to service their connections */ ap_log_error(APLOG_MARK,APLOG_NOTICE, APR_SUCCESS, ap_server_conf, - "Child %d: Waiting for %d threads to die.", my_pid, nthreads); + "Child %d: Waiting for %d worker threads to exit.", my_pid, nthreads); end_time = time(NULL) + 180; while (nthreads) { rv = wait_for_many_objects(nthreads, child_handles, end_time - time(NULL)); @@ -1353,7 +1353,7 @@ static void child_main() CloseHandle(child_handles[i]); } ap_log_error(APLOG_MARK,APLOG_NOTICE, APR_SUCCESS, ap_server_conf, - "Child %d: All worker threads have ended.", my_pid); + "Child %d: All worker threads have exited.", my_pid); CloseHandle(allowed_globals.jobsemaphore); apr_thread_mutex_destroy(allowed_globals.jobmutex);