summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/semaphorecreatesupp.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-02-03 10:10:57 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-02-03 10:10:57 +0000
commitb1dbfd724bf418ad997d72c68d3683589b53d2d5 (patch)
treef57b43a51d2d32a576577f544a0a4254b1462b9f /cpukit/posix/src/semaphorecreatesupp.c
parent2009-02-03 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b1dbfd724bf418ad997d72c68d3683589b53d2d5.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to 'cpukit/posix/src/semaphorecreatesupp.c')
-rw-r--r--cpukit/posix/src/semaphorecreatesupp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/posix/src/semaphorecreatesupp.c b/cpukit/posix/src/semaphorecreatesupp.c
index 0ee09f5fa6..da4050024c 100644
--- a/cpukit/posix/src/semaphorecreatesupp.c
+++ b/cpukit/posix/src/semaphorecreatesupp.c
@@ -73,13 +73,13 @@ int _POSIX_Semaphore_Create_support(
the_semaphore->process_shared = pshared;
if ( name ) {
- the_semaphore->named = TRUE;
+ the_semaphore->named = true;
the_semaphore->open_count = 1;
- the_semaphore->linked = TRUE;
+ the_semaphore->linked = true;
} else {
- the_semaphore->named = FALSE;
+ the_semaphore->named = false;
the_semaphore->open_count = 0;
- the_semaphore->linked = FALSE;
+ the_semaphore->linked = false;
}
the_sem_attr = &the_semaphore->Semaphore.Attributes;