From f5df386762814e36b7da83e0124be6fea13b4dd6 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Mon, 18 Jun 2001 11:50:42 +0000 Subject: [PATCH] The patch fixes 2 things. * apr_terminate now has the right declaration so it can be used directly in atexit * Win2K gets a divde by zero error when heartbeatres is zero (reproduce via support\Debug\ab.exe -k -c 6 -n 100 localhost/ Submitted by: Ian Holsman Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89383 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 4 ++++ support/ab.c | 13 ++++--------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/CHANGES b/CHANGES index a08c210e15..1843c88a4b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changes with Apache 2.0.19-dev + *) Fix an ab problem which could cause a divide-by-zero exception + with certain invocations (e.g., ab -k -c 6 -n 100 localhost/). + [Ian Holsman ] + *) Solve case-insensitive platforms' confusion about negotiated filenames, allowing files of differnt case to match in choosing the document to serve. [William Rowe] diff --git a/support/ab.c b/support/ab.c index 55f382ac7c..8cb4cc3277 100644 --- a/support/ab.c +++ b/support/ab.c @@ -1079,7 +1079,7 @@ static void read_connection(struct connection * c) } if (done < requests) { struct data s; - if ((done) && (!(done % heartbeatres))) { + if (done && heartbeatres && !(done % heartbeatres)) { fprintf(stderr, "Completed %ld requests\n", done); fflush(stderr); } @@ -1289,14 +1289,14 @@ static void test(void) static void copyright(void) { if (!use_html) { - printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.70 $> apache-2.0"); + printf("This is ApacheBench, Version %s\n", AB_VERSION " <$Revision: 1.71 $> apache-2.0"); printf("Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/\n"); printf("Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/\n"); printf("\n"); } else { printf("

\n"); - printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.70 $"); + printf(" This is ApacheBench, Version %s <%s> apache-2.0
\n", AB_VERSION, "$Revision: 1.71 $"); printf(" Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
\n"); printf(" Copyright (c) 1998-2001 The Apache Software Foundation, http://www.apache.org/
\n"); printf("

\n

\n"); @@ -1438,11 +1438,6 @@ static int open_postfile(const char *pfile) return 0; } -static void terminate(void) -{ - apr_terminate(); -} - /* ------------------------------------------------------- */ /* sort out command-line args and call test */ @@ -1465,7 +1460,7 @@ int main(int argc, const char *const argv[]) hdrs[0] = '\0'; apr_initialize(); - atexit(terminate); + atexit(apr_terminate); apr_pool_create(&cntxt, NULL); #ifdef NOT_ASCII -- 2.50.1