From a32176854b2ad88f0dec99d57fc4e75828788174 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Fri, 26 Sep 2008 20:13:29 +0000 Subject: [PATCH] The last two of several helper threads which do not need a default 1GB stack (but where on earth does 1000 come from? nonsense.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@699480 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/winnt/child.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index b68a61fba06..edd61cdc8ad 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -857,8 +857,12 @@ static void create_listener_thread() int tid; int num_listeners = 0; if (!use_acceptex) { - _beginthreadex(NULL, 0, win9x_accept, - NULL, 0, &tid); + /* A smaller stack is sufficient. + * To convert to CreateThread, the returned handle cannot be + * ignored, it must be closed/joined. + */ + _beginthreadex(NULL, 65536, win9x_accept, + NULL, stack_res_flag, &tid); } else { /* Start an accept thread per listener * XXX: Why would we have a NULL sd in our listeners? @@ -880,8 +884,12 @@ static void create_listener_thread() /* Now start a thread per listener */ for (lr = ap_listeners; lr; lr = lr->next) { if (lr->sd != NULL) { - _beginthreadex(NULL, 1000, winnt_accept, - (void *) lr, 0, &tid); + /* A smaller stack is sufficient. + * To convert to CreateThread, the returned handle cannot be + * ignored, it must be closed/joined. + */ + _beginthreadex(NULL, 65536, winnt_accept, + (void *) lr, stack_res_flag, &tid); } } } -- 2.47.2