summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxstack01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxstack01/init.c')
-rw-r--r--testsuites/psxtests/psxstack01/init.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuites/psxtests/psxstack01/init.c b/testsuites/psxtests/psxstack01/init.c
index 122d8764e9..4c66328b60 100644
--- a/testsuites/psxtests/psxstack01/init.c
+++ b/testsuites/psxtests/psxstack01/init.c
@@ -60,23 +60,23 @@ void *POSIX_Init(
puts( "Init - Initialize thread attribute for user provided stack" );
sc = pthread_attr_init( &attr );
- rtems_test_assert( !sc );
+ rtems_test_assert( !sc );
sc = pthread_attr_setstackaddr( &attr, Stack_Low );
- rtems_test_assert( !sc );
+ rtems_test_assert( !sc );
sc = pthread_attr_setstacksize( &attr, PTHREAD_MINIMUM_STACK_SIZE );
- rtems_test_assert( !sc );
+ rtems_test_assert( !sc );
/* create threads */
sc = pthread_create( &id, &attr, Test_Thread, NULL );
- rtems_test_assert( !sc );
+ rtems_test_assert( !sc );
puts( "Init - let other thread run" );
delay_request.tv_sec = 0;
delay_request.tv_nsec = 5 * 100000000;
sc = nanosleep( &delay_request, NULL );
- rtems_test_assert( !sc );
+ rtems_test_assert( !sc );
puts( "*** END OF POSIX STACK ATTRIBUTE TEST 01 ***" );
rtems_test_exit(0);