Changeset 348ba42 in rtems for cpukit/posix


Ignore:
Timestamp:
09/30/96 20:14:08 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
8880e9c7
Parents:
6ae41fd
Message:

changed stack size of posix initialization threads to double the minimum
stack size so more of acvc would pass.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/posix/src/pthread.c

    r6ae41fd r348ba42  
    260260    assert( !status );
    261261
     262    status = pthread_attr_setstacksize( &attr, PTHREAD_MINIMUM_STACK_SIZE * 2 );
     263    assert( !status );
     264
    262265    status = pthread_create(
    263266      &thread_id,
Note: See TracChangeset for help on using the changeset viewer.