summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-06 03:39:58 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-06 03:39:58 +0000
commitf0157b8fd85d5ce211b0aae48b53d9d88b59cd68 (patch)
tree12771bc70868c83ff528beb594972fb6fdaeb45a /testsuites/psxtests
parent2008-09-06 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f0157b8fd85d5ce211b0aae48b53d9d88b59cd68.tar.bz2
Convert to "bool".
Diffstat (limited to 'testsuites/psxtests')
-rw-r--r--testsuites/psxtests/psxcleanup/psxcleanup.c6
-rw-r--r--testsuites/psxtests/psxfatal_support/init.c2
-rw-r--r--testsuites/psxtests/psxfatal_support/system.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/testsuites/psxtests/psxcleanup/psxcleanup.c b/testsuites/psxtests/psxcleanup/psxcleanup.c
index f8092648ab..88e0069c3e 100644
--- a/testsuites/psxtests/psxcleanup/psxcleanup.c
+++ b/testsuites/psxtests/psxcleanup/psxcleanup.c
@@ -34,9 +34,9 @@ typedef struct {
int waiting_writers; /* Count of waiting writers. */
} lock_t;
-volatile boolean reader_cleanup_ran;
-volatile boolean release_read_lock_ran;
-volatile boolean writer_cleanup_ran;
+volatile bool reader_cleanup_ran;
+volatile bool release_read_lock_ran;
+volatile bool writer_cleanup_ran;
void waiting_reader_cleanup(void *arg)
{
diff --git a/testsuites/psxtests/psxfatal_support/init.c b/testsuites/psxtests/psxfatal_support/init.c
index 0ad753a1dc..b0e817c2bb 100644
--- a/testsuites/psxtests/psxfatal_support/init.c
+++ b/testsuites/psxtests/psxfatal_support/init.c
@@ -121,7 +121,7 @@ void Put_Source( uint32_t source )
rtems_extension Fatal_extension(
uint32_t source,
- boolean is_internal,
+ bool is_internal,
uint32_t error
)
{
diff --git a/testsuites/psxtests/psxfatal_support/system.h b/testsuites/psxtests/psxfatal_support/system.h
index 551632a79f..d5b6366e0a 100644
--- a/testsuites/psxtests/psxfatal_support/system.h
+++ b/testsuites/psxtests/psxfatal_support/system.h
@@ -28,7 +28,7 @@ void *POSIX_Init(
rtems_extension Fatal_extension(
uint32_t source,
- boolean is_internal,
+ bool is_internal,
uint32_t error
);