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.
This commit is contained in:
Joel Sherrill
2011-07-21 13:46:49 +00:00
parent 186fee26ef
commit 1c2ab39caf
8 changed files with 23 additions and 17 deletions

View File

@@ -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 );