summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuites/psxtests/psxsignal06/init.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxsignal06/init.c b/testsuites/psxtests/psxsignal06/init.c
index da2b31e7e0..810783c166 100644
--- a/testsuites/psxtests/psxsignal06/init.c
+++ b/testsuites/psxtests/psxsignal06/init.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2012.
+ * COPYRIGHT (c) 1989-2013.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -56,6 +56,9 @@ void *TestThread(
act.sa_flags = 0;
sigaction( SIGUSR1, &act, NULL );
+ status = pthread_mutex_lock( &MutexId );
+ rtems_test_assert( !status );
+
/* interrupting condition wait returns 0 */
puts( "Test: pthread_cond_wait - OK" );
status = pthread_cond_wait( &CondVarId, &MutexId );