Changeset fdf6917 in rtems


Ignore:
Timestamp:
08/15/96 18:59:00 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
851b18d
Parents:
f3e19146
Message:

changed error for too many threads to EAGAIN

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/tests/psxtests/psx01/init.c

    rf3e19146 rfdf6917  
    202202  /* too may threads error */
    203203
    204   puts( "Init: pthread_create - EINVAL (too many threads)" );
     204  puts( "Init: pthread_create - EAGAIN (too many threads)" );
    205205  status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL );
    206   assert( status == EINVAL );
     206  assert( status == EAGAIN );
    207207
    208208  puts( "Init: sched_yield to Task_1" );
  • testsuites/psxtests/psx01/init.c

    rf3e19146 rfdf6917  
    202202  /* too may threads error */
    203203
    204   puts( "Init: pthread_create - EINVAL (too many threads)" );
     204  puts( "Init: pthread_create - EAGAIN (too many threads)" );
    205205  status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL );
    206   assert( status == EINVAL );
     206  assert( status == EAGAIN );
    207207
    208208  puts( "Init: sched_yield to Task_1" );
Note: See TracChangeset for help on using the changeset viewer.