From 42418a9d3c6c18fb16ae59e66f4541f8085e8077 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 7 Aug 1996 22:00:57 +0000 Subject: added test cases for ESRCH from pthread_join and pthread_detach --- testsuites/psxtests/psx08/init.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'testsuites/psxtests/psx08') diff --git a/testsuites/psxtests/psx08/init.c b/testsuites/psxtests/psx08/init.c index e2aa3d27d0..328adae9e1 100644 --- a/testsuites/psxtests/psx08/init.c +++ b/testsuites/psxtests/psx08/init.c @@ -32,6 +32,10 @@ void *POSIX_Init( Init_id = pthread_self(); printf( "Init's ID is 0x%08x\n", Init_id ); + puts( "Init: pthread_detach - ESRCH (invalid id)" ); + status = pthread_detach( -1 ); + assert( status == ESRCH ); + /* detach this thread */ puts( "Init: pthread_detach self" ); @@ -47,8 +51,13 @@ void *POSIX_Init( status = pthread_create( &Task2_id, NULL, Task_2, NULL ); assert( !status ); + puts( "Init: pthread_join - ESRCH (invalid id)" ); + status = pthread_join( -1, &return_pointer ); + assert( status == ESRCH ); + puts( "Init: pthread_join - SUCCESSFUL" ); status = pthread_join( Task_id, &return_pointer ); + /* assert is below comment */ /* switch to Task 1 */ -- cgit v1.2.3