summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx12/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx12/task.c')
-rw-r--r--testsuites/psxtests/psx12/task.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuites/psxtests/psx12/task.c b/testsuites/psxtests/psx12/task.c
index 67e5a68e40..1d3804da4f 100644
--- a/testsuites/psxtests/psx12/task.c
+++ b/testsuites/psxtests/psx12/task.c
@@ -26,6 +26,11 @@ void *Task_1(
void *argument
)
{
+ /*
+ * Detach ourselves so we don't wait for a join that won't happen.
+ */
+ pthread_detach( pthread_self() );
+
puts( "Task_1: exitting" );
pthread_exit( NULL );