summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mutex.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/mutex.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/mutex.c')
-rw-r--r--cpukit/posix/src/mutex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/posix/src/mutex.c b/cpukit/posix/src/mutex.c
index 5e8693f830..ea71d6b277 100644
--- a/cpukit/posix/src/mutex.c
+++ b/cpukit/posix/src/mutex.c
@@ -48,11 +48,11 @@ void _POSIX_Mutex_Manager_initialization(void)
* Since the maximum priority is run-time configured, this
* structure cannot be initialized statically.
*/
- default_attr->is_initialized = TRUE;
+ default_attr->is_initialized = true;
default_attr->process_shared = PTHREAD_PROCESS_PRIVATE;
default_attr->prio_ceiling = POSIX_SCHEDULER_MAXIMUM_PRIORITY;
default_attr->protocol = PTHREAD_PRIO_NONE;
- default_attr->recursive = FALSE;
+ default_attr->recursive = false;
/*
* Initialize the POSIX mutex object class information structure.
@@ -65,11 +65,11 @@ void _POSIX_Mutex_Manager_initialization(void)
/* maximum objects of this class */
sizeof( POSIX_Mutex_Control ),
/* size of this object's control block */
- TRUE, /* TRUE if names for this object are strings */
+ true, /* true if names for this object are strings */
_POSIX_PATH_MAX /* maximum length of each object's name */
#if defined(RTEMS_MULTIPROCESSING)
,
- FALSE, /* TRUE if this is a global object class */
+ false, /* true if this is a global object class */
NULL /* Proxy extraction support callout */
#endif
);