]> granicus.if.org Git - apache/commitdiff
Win32: tweak some messages
authorBill Stoddard <stoddard@apache.org>
Tue, 2 Apr 2002 14:48:54 +0000 (14:48 +0000)
committerBill Stoddard <stoddard@apache.org>
Tue, 2 Apr 2002 14:48:54 +0000 (14:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94387 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/winnt/mpm_winnt.c

index e1694185e964fe8cd61b303aa360414a6f4f38ec..36a0eea34f62abe78abf3e3a092d850adf85ba2a 100644 (file)
@@ -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);