summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxkey03
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 03:33:25 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 03:33:25 +0000
commitb1274bd94c94520ed9402f85c949976d7008093e (patch)
tree6ed7755c34e5fcccbe06ff095017a4399de180ff /testsuites/psxtests/psxkey03
parentWhitespace removal. (diff)
downloadrtems-b1274bd94c94520ed9402f85c949976d7008093e.tar.bz2
Whitespace removal.
Diffstat (limited to 'testsuites/psxtests/psxkey03')
-rw-r--r--testsuites/psxtests/psxkey03/init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/psxtests/psxkey03/init.c b/testsuites/psxtests/psxkey03/init.c
index 02d45da610..d69059072e 100644
--- a/testsuites/psxtests/psxkey03/init.c
+++ b/testsuites/psxtests/psxkey03/init.c
@@ -31,7 +31,7 @@ void *Test_Thread(
puts( "Test_Thread - pthread_setspecific - OK" );
sc = pthread_setspecific( Key, key_value );
assert( !sc );
-
+
puts( "Test_Thread - pthread_exit to run key destructors - OK" );
return NULL;
}
@@ -45,13 +45,13 @@ void *POSIX_Init(
struct timespec delay_request;
puts( "\n\n*** TEST KEY 03 ***" );
-
+
/*
* Key with NULL destructor
*/
puts( "Init - pthread_key_create with NULL destructor - OK" );
sc = pthread_key_create( &Key, NULL );
- assert( !sc );
+ assert( !sc );
puts( "Init - pthread_create - OK" );
sc = pthread_create( &thread, NULL, Test_Thread, &sc );
@@ -73,7 +73,7 @@ void *POSIX_Init(
destructor_ran = false;
puts( "Init - pthread_key_create with non-NULL destructor - OK" );
sc = pthread_key_create( &Key, destructor );
- assert( !sc );
+ assert( !sc );
puts( "Init - pthread_create - OK" );
sc = pthread_create( &thread, NULL, Test_Thread, NULL );