From cvs-return-25082-apmail-httpd-cvs-archive=httpd.apache.org@httpd.apache.org Sun May 07 21:00:33 2006 Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 65644 invoked from network); 7 May 2006 21:00:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 May 2006 21:00:32 -0000 Received: (qmail 76851 invoked by uid 500); 7 May 2006 21:00:32 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 76650 invoked by uid 500); 7 May 2006 21:00:31 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 76639 invoked by uid 99); 7 May 2006 21:00:31 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 May 2006 14:00:31 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 07 May 2006 14:00:30 -0700 Received: (qmail 65578 invoked by uid 65534); 7 May 2006 21:00:10 -0000 Message-ID: <20060507210010.65577.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r404848 - /httpd/httpd/trunk/server/scoreboard.c Date: Sun, 07 May 2006 21:00:09 -0000 To: cvs@httpd.apache.org From: niq@apache.org X-Mailer: svnmailer-1.0.8 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: niq Date: Sun May 7 14:00:08 2006 New Revision: 404848 URL: http://svn.apache.org/viewcvs?rev=404848&view=rev Log: Scoreboard size (Chris Darroch) Modified: httpd/httpd/trunk/server/scoreboard.c Modified: httpd/httpd/trunk/server/scoreboard.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/scoreboard.c?rev=404848&r1=404847&r2=404848&view=diff ============================================================================== --- httpd/httpd/trunk/server/scoreboard.c (original) +++ httpd/httpd/trunk/server/scoreboard.c Sun May 7 14:00:08 2006 @@ -117,8 +117,7 @@ ap_calc_scoreboard_size(); ap_scoreboard_image = - calloc(1, sizeof(scoreboard) + server_limit * sizeof(worker_score *) + - server_limit * lb_limit * sizeof(lb_score *)); + calloc(1, sizeof(scoreboard) + server_limit * sizeof(worker_score *)); more_storage = shared_score; ap_scoreboard_image->global = (global_score *)more_storage; more_storage += sizeof(global_score);