From: Brian Havard Date: Mon, 1 Nov 1999 10:58:55 +0000 (+0000) Subject: OS/2: Bump up thread stack size. 64k just wasn't enough when doing X-Git-Tag: 1.3.10~201 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9da853286c48ed5fa4283c15345ed3b0cbde316b;p=apache 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 --- 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