Changeset 851b18d in rtems


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

changed error code

Files:
2 edited

Legend:

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

    rfdf6917 r851b18d  
    100100  attr.stacksize = 0;
    101101 
    102   puts( "Init: pthread_create - EINVAL (stacksize too small)" );
     102  puts( "Init: pthread_create - EAGAIN (stacksize too small)" );
    103103  status = pthread_create( &Task_id, &attr, Task_1, NULL );
    104   assert( status == EINVAL );
     104  assert( status == EAGAIN );
    105105
    106106  attr.stacksize = BSP_Configuration.work_space_size;
  • testsuites/psxtests/psx07/init.c

    rfdf6917 r851b18d  
    100100  attr.stacksize = 0;
    101101 
    102   puts( "Init: pthread_create - EINVAL (stacksize too small)" );
     102  puts( "Init: pthread_create - EAGAIN (stacksize too small)" );
    103103  status = pthread_create( &Task_id, &attr, Task_1, NULL );
    104   assert( status == EINVAL );
     104  assert( status == EAGAIN );
    105105
    106106  attr.stacksize = BSP_Configuration.work_space_size;
Note: See TracChangeset for help on using the changeset viewer.