summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxcleanup
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/psxcleanup
parent2008-09-06 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f0157b8fd85d5ce211b0aae48b53d9d88b59cd68.tar.bz2
Convert to "bool".
Diffstat (limited to 'testsuites/psxtests/psxcleanup')
-rw-r--r--testsuites/psxtests/psxcleanup/psxcleanup.c6
1 files changed, 3 insertions, 3 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)
{