Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 49129 invoked by uid 500); 6 Oct 2001 01:38:10 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 49117 invoked from network); 6 Oct 2001 01:38:10 -0000 Message-ID: <3BBE6115.3AD5161F@us.ibm.com> Date: Fri, 05 Oct 2001 19:40:37 -0600 From: David McCreedy X-Mailer: Mozilla 4.72 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: dev@httpd.apache.org Subject: [PATCH] TPF additional fix in http_main.c Content-Type: multipart/mixed; boundary="------------5D7ECE77C1586ABFE937D773" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. --------------5D7ECE77C1586ABFE937D773 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit In testing the 1.3.21 tarball I found another fix required in a TPF-specific block of http_main.c due to mutex processing changes. I don't want to nix 1.3.21 but if 1.3.22 is going to happen anyway this change should be incorporated before it's rolled. As I said above, the patch is in a TPF-specific block of code so it won't affect other platforms. Sorry to be a pest... David McCreedy --------------5D7ECE77C1586ABFE937D773 Content-Type: text/plain; charset=us-ascii; name="diffoutputfile" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffoutputfile" diff -ru3 before/src/main/http_main.c after/src/main/http_main.c --- before/src/main/http_main.c Fri Oct 5 21:04:12 2001 +++ after/src/main/http_main.c Fri Oct 5 21:06:54 2001 @@ -5323,6 +5323,7 @@ ap_scoreboard_image = (scoreboard *)input_parms.child.scoreboard_heap; #endif + ap_init_mutex_method(ap_default_mutex_method()); child_main(input_parms.child.slot); } else --------------5D7ECE77C1586ABFE937D773--