changed stack size of posix initialization threads to double the minimum

stack size so more of acvc would pass.
This commit is contained in:
Joel Sherrill
1996-09-30 20:14:08 +00:00
parent 6ae41fd035
commit 348ba429c0
2 changed files with 6 additions and 0 deletions

View File

@@ -259,6 +259,9 @@ void _POSIX_Threads_Initialize_user_threads( void )
status = pthread_attr_setinheritsched( &attr, PTHREAD_EXPLICIT_SCHED );
assert( !status );
status = pthread_attr_setstacksize( &attr, PTHREAD_MINIMUM_STACK_SIZE * 2 );
assert( !status );
status = pthread_create(
&thread_id,
&attr,

View File

@@ -259,6 +259,9 @@ void _POSIX_Threads_Initialize_user_threads( void )
status = pthread_attr_setinheritsched( &attr, PTHREAD_EXPLICIT_SCHED );
assert( !status );
status = pthread_attr_setstacksize( &attr, PTHREAD_MINIMUM_STACK_SIZE * 2 );
assert( !status );
status = pthread_create(
&thread_id,
&attr,