summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-23 05:06:37 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-23 05:06:37 +0000
commit997bc7f4153569ac282ffc035f1c8a4e54d0e08a (patch)
treeac7e225eed2d2c298b590ef824020b2c7d4a2620 /cpukit
parent2008-12-23 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-997bc7f4153569ac282ffc035f1c8a4e54d0e08a.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/clock.h6
-rw-r--r--cpukit/rtems/include/rtems/rtems/intr.h6
-rw-r--r--cpukit/rtems/include/rtems/rtems/region.h2
-rw-r--r--cpukit/rtems/include/rtems/rtems/support.h6
4 files changed, 10 insertions, 10 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/clock.h b/cpukit/rtems/include/rtems/rtems/clock.h
index 04924d74d6..ef1b98edb1 100644
--- a/cpukit/rtems/include/rtems/rtems/clock.h
+++ b/cpukit/rtems/include/rtems/rtems/clock.h
@@ -240,12 +240,12 @@ rtems_status_code rtems_clock_get_uptime(
/**
* @brief _TOD_Validate
*
- * This support function returns TRUE if @a the_tod contains
- * a valid time of day, and FALSE otherwise.
+ * This support function returns true if @a the_tod contains
+ * a valid time of day, and false otherwise.
*
* @param[in] the_tod is the TOD structure to validate
*
- * @return This method returns TRUE if the TOD is valid and FALSE otherwise.
+ * @return This method returns true if the TOD is valid and false otherwise.
*/
bool _TOD_Validate(
rtems_time_of_day *the_tod
diff --git a/cpukit/rtems/include/rtems/rtems/intr.h b/cpukit/rtems/include/rtems/rtems/intr.h
index ec4c1fcdd8..f1bb485db2 100644
--- a/cpukit/rtems/include/rtems/rtems/intr.h
+++ b/cpukit/rtems/include/rtems/rtems/intr.h
@@ -98,10 +98,10 @@ rtems_status_code rtems_interrupt_catch(
_ISR_Flash(_isr_cookie)
/**
- * @brief Returns TRUE if the processor is currently servicing an interrupt
- * and FALSE otherwise.
+ * @brief Returns true if the processor is currently servicing an interrupt
+ * and false otherwise.
*
- * A return value of TRUE indicates that the caller is an interrupt service
+ * A return value of true indicates that the caller is an interrupt service
* routine and @b not a thread. The directives available to an interrupt
* service routine are restricted.
*/
diff --git a/cpukit/rtems/include/rtems/rtems/region.h b/cpukit/rtems/include/rtems/rtems/region.h
index 34be2518d6..0a2e804bc2 100644
--- a/cpukit/rtems/include/rtems/rtems/region.h
+++ b/cpukit/rtems/include/rtems/rtems/region.h
@@ -273,7 +273,7 @@ extern void _Region_Process_queue(Region_Control *the_region);
#define _Region_Debug_Walk( _the_region, _source ) \
do { \
if ( _Debug_Is_enabled( RTEMS_DEBUG_REGION ) ) \
- _Heap_Walk( &(_the_region)->Memory, _source, FALSE ); \
+ _Heap_Walk( &(_the_region)->Memory, _source, false ); \
} while ( 0 )
#else
diff --git a/cpukit/rtems/include/rtems/rtems/support.h b/cpukit/rtems/include/rtems/rtems/support.h
index b7282e33d6..aceb71b7e4 100644
--- a/cpukit/rtems/include/rtems/rtems/support.h
+++ b/cpukit/rtems/include/rtems/rtems/support.h
@@ -62,7 +62,7 @@ extern "C" {
*
* @param[in] the_info
*
- * @return TRUE if successful
+ * @return true if successful
*/
bool rtems_workspace_get_information(
Heap_Information_block *the_info
@@ -77,7 +77,7 @@ bool rtems_workspace_get_information(
* @param[in] bytes is the number of bytes to allocate
* @param[in] pointer is the returned pointer to allocated memory
*
- * @return TRUE if successful
+ * @return true if successful
*/
bool rtems_workspace_allocate(
size_t bytes,
@@ -92,7 +92,7 @@ bool rtems_workspace_allocate(
*
* @param[in] pointer is the allocated workspace
*
- * @return TRUE if successful
+ * @return true if successful
*/
bool rtems_workspace_free(
void *pointer