summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx06/task2.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 09:24:30 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 09:24:30 +0000
commit1b4f2b305c95a832a259e4c4944f1a0981676eba (patch)
tree1ee56809b12a03ba53d630f5483a48387f72b74a /testsuites/psxtests/psx06/task2.c
parentRemove stray white spaces. (diff)
downloadrtems-1b4f2b305c95a832a259e4c4944f1a0981676eba.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'testsuites/psxtests/psx06/task2.c')
-rw-r--r--testsuites/psxtests/psx06/task2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuites/psxtests/psx06/task2.c b/testsuites/psxtests/psx06/task2.c
index 497b592f2c..e894e40a1d 100644
--- a/testsuites/psxtests/psx06/task2.c
+++ b/testsuites/psxtests/psx06/task2.c
@@ -26,7 +26,7 @@ void *Task_2(
{
int status;
uint32_t *key_data;
-
+
printf( "Destructor invoked %d times\n", Destructor_invoked );
printf( "Task_2: Setting the key to %d\n", 2 );
@@ -34,18 +34,18 @@ void *Task_2(
if ( status )
printf( "status = %d\n", status );
assert( !status );
-
+
key_data = pthread_getspecific( Key_id );
printf( "Task_2: Got the key value of %ld\n",
(unsigned long) ((uint32_t *)key_data - Data_array) );
if ( status )
printf( "status = %d\n", status );
assert( !status );
-
+
puts( "Task2: exitting" );
pthread_exit( NULL );
-
+
/* switch to init task */
-
+
return NULL; /* just so the compiler thinks we returned something */
}