summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxfatal_support
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxfatal_support')
-rw-r--r--testsuites/psxtests/psxfatal_support/init.c6
-rw-r--r--testsuites/psxtests/psxfatal_support/system.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/testsuites/psxtests/psxfatal_support/init.c b/testsuites/psxtests/psxfatal_support/init.c
index bc48b95cb0..d639d17d3d 100644
--- a/testsuites/psxtests/psxfatal_support/init.c
+++ b/testsuites/psxtests/psxfatal_support/init.c
@@ -62,7 +62,7 @@ void Put_Source( rtems_fatal_source source )
void Fatal_extension(
rtems_fatal_source source,
- bool is_internal,
+ bool always_set_to_false,
rtems_fatal_code error
)
{
@@ -77,7 +77,7 @@ void Fatal_extension(
printk( ")\n" );
}
- if ( is_internal )
+ if ( always_set_to_false )
printk( "ERROR==> Fatal Extension is internal set to true expected false\n" );
if ( error != FATAL_ERROR_EXPECTED_ERROR ) {
@@ -90,7 +90,7 @@ void Fatal_extension(
if (
source == FATAL_ERROR_EXPECTED_SOURCE
- && !is_internal
+ && !always_set_to_false
&& error == FATAL_ERROR_EXPECTED_ERROR
) {
TEST_END();
diff --git a/testsuites/psxtests/psxfatal_support/system.h b/testsuites/psxtests/psxfatal_support/system.h
index 4a6e5d9d9c..c825a4a252 100644
--- a/testsuites/psxtests/psxfatal_support/system.h
+++ b/testsuites/psxtests/psxfatal_support/system.h
@@ -36,7 +36,7 @@ void *POSIX_Init(
void Fatal_extension(
rtems_fatal_source source,
- bool is_internal,
+ bool always_set_to_false,
rtems_fatal_code error
);