From c8f5ab5d2ebf94436e8dfd6e222f3fbca5e22394 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 11 Jun 1996 20:43:55 +0000 Subject: tested blocking a signal, sending it to self, then unblocking it. make minimum stack size for posix threads double that of the cpu's minimum requirement. --- c/src/exec/posix/src/pthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c/src/exec/posix/src/pthread.c') diff --git a/c/src/exec/posix/src/pthread.c b/c/src/exec/posix/src/pthread.c index 877af7a8ff..a6d87bb463 100644 --- a/c/src/exec/posix/src/pthread.c +++ b/c/src/exec/posix/src/pthread.c @@ -28,7 +28,7 @@ const pthread_attr_t _POSIX_Threads_Default_attributes = { TRUE, /* is_initialized */ NULL, /* stackaddr */ - STACK_MINIMUM_SIZE, /* stacksize */ + STACK_MINIMUM_SIZE * 2, /* stacksize */ PTHREAD_SCOPE_PROCESS, /* contentionscope */ PTHREAD_EXPLICIT_SCHED, /* inheritsched */ SCHED_FIFO, /* schedpolicy */ -- cgit v1.2.3