summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx01/init.c')
-rw-r--r--testsuites/psxtests/psx01/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx01/init.c b/testsuites/psxtests/psx01/init.c
index 631634b443..632ec15274 100644
--- a/testsuites/psxtests/psx01/init.c
+++ b/testsuites/psxtests/psx01/init.c
@@ -201,9 +201,9 @@ void *POSIX_Init(
/* too may threads error */
- puts( "Init: pthread_create - EINVAL (too many threads)" );
+ puts( "Init: pthread_create - EAGAIN (too many threads)" );
status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL );
- assert( status == EINVAL );
+ assert( status == EAGAIN );
puts( "Init: sched_yield to Task_1" );
status = sched_yield();