From 7d94a82bc2027b0e85be5bf45fb9b33cb04cc752 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Tue, 2 Apr 2002 14:48:54 +0000 Subject: [PATCH] Win32: tweak some messages git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94387 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/winnt/mpm_winnt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index e1694185e9..36a0eea34f 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); -- 2.50.1