From 2c3cc9185dc25af31c3b76501302ce0c06f8da7e Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Tue, 11 Sep 2001 19:27:09 +0000 Subject: Set the stack size of threads to 32KB from 128KB. --- src/thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/thread.c b/src/thread.c index 11ff21e..ea7f7eb 100644 --- a/src/thread.c +++ b/src/thread.c @@ -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; -- cgit v1.2.3