]> granicus.if.org Git - apache/commitdiff
Fix some broken log messages in WinNT MPM.
authorJeff Trawick <trawick@apache.org>
Thu, 5 Jun 2003 16:54:48 +0000 (16:54 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 5 Jun 2003 16:54:48 +0000 (16:54 +0000)
Submitted by:    Juan Rivera <Juan.Rivera@citrix.com>
Reviewed by:     Jeff Trawick

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100175 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/mpm/winnt/child.c

diff --git a/CHANGES b/CHANGES
index 7d98e0ed209ff304fa78befe16aa0620e3928afe..262f5299918fb6071feaaf562982e607203d2420 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) Fix some broken log messages in WinNT MPM.  
+     [Juan Rivera <Juan.Rivera@citrix.com>]
+
   *) Add support for "streamy" PROPFIND responses.
      [Ben Collins-Sussman <sussman@collab.net>]
 
index 95cabeed02a71fdc6eee9393aa22851ff6e3da87..841fa8bc75ac2f7c79e75c9cde4b30f1b41d7530 100644 (file)
@@ -899,7 +899,7 @@ void child_main(apr_pool_t *pconf)
                 ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(), ap_server_conf,
                              "Child %d: _beginthreadex failed. Unable to create all worker threads. "
                              "Created %d of the %d threads requested with the ThreadsPerChild configuration directive.", 
-                             threads_created, ap_threads_per_child);
+                             my_pid, threads_created, ap_threads_per_child);
                 ap_signal_parent(SIGNAL_PARENT_SHUTDOWN);
                 goto shutdown;
             }
@@ -966,7 +966,7 @@ void child_main(apr_pool_t *pconf)
             if (rv == WAIT_FAILED) {
             /* Something serious is wrong */
             ap_log_error(APLOG_MARK, APLOG_CRIT, apr_get_os_error(), ap_server_conf,
-                         "Child %d: WAIT_FAILED -- shutting down server");
+                         "Child %d: WAIT_FAILED -- shutting down server", my_pid);
             break;
         }
         else if (cld == 0) {