summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx08/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx08/init.c')
-rw-r--r--testsuites/psxtests/psx08/init.c9
1 files changed, 9 insertions, 0 deletions
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 */