summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmmutex02
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-21 13:46:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-21 13:46:49 +0000
commit1c2ab39caf3207f21d667f79783953609190d6dd (patch)
tree6aa7afbc269c45f31ee59abcbc089d6442dd0449 /testsuites/psxtmtests/psxtmmutex02
parent2011-07-21 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-1c2ab39caf3207f21d667f79783953609190d6dd.tar.bz2
2011-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxtmmutex02/init.c, psxtmmutex05/init.c, psxtmmutex06/init.c, psxtmnanosleep02/init.c, psxtmsleep02/init.c, psxtmthread01/init.c, psxtmthread03/init.c: Standardize start and end test messages.
Diffstat (limited to 'testsuites/psxtmtests/psxtmmutex02')
-rw-r--r--testsuites/psxtmtests/psxtmmutex02/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/psxtmtests/psxtmmutex02/init.c b/testsuites/psxtmtests/psxtmmutex02/init.c
index 64c79a582b..13dce6a803 100644
--- a/testsuites/psxtmtests/psxtmmutex02/init.c
+++ b/testsuites/psxtmtests/psxtmmutex02/init.c
@@ -40,14 +40,14 @@ void *Low(
end_time = benchmark_timer_read();
put_time(
- "pthread_mutex_lock (unavailable)",
+ "pthread_mutex_lock - unavailable, block",
end_time,
OPERATION_COUNT,
0,
0
);
- puts( "*** END OF POSIX TIME TEST MUTEX 02 ***" );
+ puts( "*** END OF POSIX TIME TEST PSXTMMUTEX02 ***" );
rtems_test_exit( 0 );
return NULL;
@@ -81,7 +81,7 @@ void *POSIX_Init(
int status;
pthread_t threadId;
- puts( "\n\n*** POSIX TIME TEST MUTEX 02 ***" );
+ puts( "\n\n*** POSIX TIME TEST PSXTMMUTEX02 ***" );
for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) {
status = pthread_create( &threadId, NULL, Middle, NULL );