mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 23:23:13 +00:00
added test cases for ESRCH from pthread_join and pthread_detach
This commit is contained in:
@@ -32,6 +32,10 @@ void *POSIX_Init(
|
|||||||
Init_id = pthread_self();
|
Init_id = pthread_self();
|
||||||
printf( "Init's ID is 0x%08x\n", Init_id );
|
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 */
|
/* detach this thread */
|
||||||
|
|
||||||
puts( "Init: pthread_detach self" );
|
puts( "Init: pthread_detach self" );
|
||||||
@@ -47,8 +51,13 @@ void *POSIX_Init(
|
|||||||
status = pthread_create( &Task2_id, NULL, Task_2, NULL );
|
status = pthread_create( &Task2_id, NULL, Task_2, NULL );
|
||||||
assert( !status );
|
assert( !status );
|
||||||
|
|
||||||
|
puts( "Init: pthread_join - ESRCH (invalid id)" );
|
||||||
|
status = pthread_join( -1, &return_pointer );
|
||||||
|
assert( status == ESRCH );
|
||||||
|
|
||||||
puts( "Init: pthread_join - SUCCESSFUL" );
|
puts( "Init: pthread_join - SUCCESSFUL" );
|
||||||
status = pthread_join( Task_id, &return_pointer );
|
status = pthread_join( Task_id, &return_pointer );
|
||||||
|
/* assert is below comment */
|
||||||
|
|
||||||
/* switch to Task 1 */
|
/* switch to Task 1 */
|
||||||
|
|
||||||
|
|||||||
@@ -32,6 +32,10 @@ void *POSIX_Init(
|
|||||||
Init_id = pthread_self();
|
Init_id = pthread_self();
|
||||||
printf( "Init's ID is 0x%08x\n", Init_id );
|
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 */
|
/* detach this thread */
|
||||||
|
|
||||||
puts( "Init: pthread_detach self" );
|
puts( "Init: pthread_detach self" );
|
||||||
@@ -47,8 +51,13 @@ void *POSIX_Init(
|
|||||||
status = pthread_create( &Task2_id, NULL, Task_2, NULL );
|
status = pthread_create( &Task2_id, NULL, Task_2, NULL );
|
||||||
assert( !status );
|
assert( !status );
|
||||||
|
|
||||||
|
puts( "Init: pthread_join - ESRCH (invalid id)" );
|
||||||
|
status = pthread_join( -1, &return_pointer );
|
||||||
|
assert( status == ESRCH );
|
||||||
|
|
||||||
puts( "Init: pthread_join - SUCCESSFUL" );
|
puts( "Init: pthread_join - SUCCESSFUL" );
|
||||||
status = pthread_join( Task_id, &return_pointer );
|
status = pthread_join( Task_id, &return_pointer );
|
||||||
|
/* assert is below comment */
|
||||||
|
|
||||||
/* switch to Task 1 */
|
/* switch to Task 1 */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user