From 9da853286c48ed5fa4283c15345ed3b0cbde316b Mon Sep 17 00:00:00 2001 From: Brian Havard Date: Mon, 1 Nov 1999 10:58:55 +0000 Subject: [PATCH] OS/2: Bump up thread stack size. 64k just wasn't enough when doing sub-requests in mod_include. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84082 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/spmt_os2/spmt_os2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mpm/spmt_os2/spmt_os2.c b/server/mpm/spmt_os2/spmt_os2.c index 0558b7ab6e..9487b0eba6 100644 --- a/server/mpm/spmt_os2/spmt_os2.c +++ b/server/mpm/spmt_os2/spmt_os2.c @@ -1179,7 +1179,7 @@ static int make_child(server_rec *s, int slot, time_t now) ap_update_child_status(slot, SERVER_STARTING, (request_rec *) NULL); - if ((tid = _beginthread(child_main, NULL, 65536, (void *)slot)) == -1) { + if ((tid = _beginthread(child_main, NULL, 256*1024, (void *)slot)) == -1) { ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, s, "_beginthread: Unable to create new thread"); /* _beginthread didn't succeed. Fix the scoreboard or else -- 2.40.0