summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/pthread.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-06-11 20:43:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-06-11 20:43:55 +0000
commitc8f5ab5d2ebf94436e8dfd6e222f3fbca5e22394 (patch)
tree780ca6a2cf22025be7f9fc7f7095a9f5f0f32596 /c/src/exec/posix/src/pthread.c
parentmodified to test pthread_kill() to self and pthread_kill() to a blocked (diff)
downloadrtems-c8f5ab5d2ebf94436e8dfd6e222f3fbca5e22394.tar.bz2
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.
Diffstat (limited to 'c/src/exec/posix/src/pthread.c')
-rw-r--r--c/src/exec/posix/src/pthread.c2
1 files changed, 1 insertions, 1 deletions
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 */