From fdf6917aaa484a7c8c634c90e5e93ca77f535e76 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 15 Aug 1996 18:59:00 +0000 Subject: changed error for too many threads to EAGAIN --- c/src/tests/psxtests/psx01/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c/src/tests/psxtests/psx01/init.c') diff --git a/c/src/tests/psxtests/psx01/init.c b/c/src/tests/psxtests/psx01/init.c index 631634b443..632ec15274 100644 --- a/c/src/tests/psxtests/psx01/init.c +++ b/c/src/tests/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(); -- cgit v1.2.3