summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx07/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx07/init.c')
-rw-r--r--testsuites/psxtests/psx07/init.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/testsuites/psxtests/psx07/init.c b/testsuites/psxtests/psx07/init.c
index f4da65213a..ba769f70b4 100644
--- a/testsuites/psxtests/psx07/init.c
+++ b/testsuites/psxtests/psx07/init.c
@@ -33,8 +33,6 @@ void print_schedparam(
#endif
}
-extern rtems_configuration_table BSP_Configuration;
-
void *POSIX_Init(
void *argument
)
@@ -107,7 +105,7 @@ void *POSIX_Init(
status = pthread_attr_init( &attr );
assert( !status );
- attr.stacksize = BSP_Configuration.work_space_size * 10;
+ attr.stacksize = rtems_configuration_get_work_space_size() * 10;
puts( "Init: pthread_create - EAGAIN (stacksize too large)" );
status = pthread_create( &Task_id, &attr, Task_1, NULL );
assert( status == EAGAIN );