Set the stack size of threads to 32KB from 128KB.

This commit is contained in:
Robert James Kaes 2001-09-11 19:27:09 +00:00
parent f8edd2d8b4
commit 2c3cc9185d

View File

@ -1,4 +1,4 @@
/* $Id: thread.c,v 1.14 2001-09-08 18:58:37 rjkaes Exp $
/* $Id: thread.c,v 1.15 2001-09-11 19:27:09 rjkaes Exp $
*
* Handles the creation/destruction of the various threads required for
* processing incoming connections.
@ -28,7 +28,7 @@
* This is the stack frame size used by all the threads. We'll start by
* setting it to 128 KB.
*/
#define THREAD_STACK_SIZE (1024 * 128)
#define THREAD_STACK_SIZE (1024 * 32)
static int listenfd;
static socklen_t addrlen;