From 484a76996eeb65ad726b65946642516c70b3257b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 4 Sep 2008 17:46:39 +0000 Subject: Convert to "bool". --- cpukit/rtems/inline/rtems/rtems/asr.inl | 6 ++--- cpukit/rtems/inline/rtems/rtems/attr.inl | 34 ++++++++++++++-------------- cpukit/rtems/inline/rtems/rtems/barrier.inl | 2 +- cpukit/rtems/inline/rtems/rtems/dpmem.inl | 4 ++-- cpukit/rtems/inline/rtems/rtems/eventset.inl | 2 +- cpukit/rtems/inline/rtems/rtems/message.inl | 2 +- cpukit/rtems/inline/rtems/rtems/modes.inl | 10 ++++---- cpukit/rtems/inline/rtems/rtems/options.inl | 8 +++---- cpukit/rtems/inline/rtems/rtems/part.inl | 8 +++---- cpukit/rtems/inline/rtems/rtems/ratemon.inl | 8 +++---- cpukit/rtems/inline/rtems/rtems/region.inl | 4 ++-- cpukit/rtems/inline/rtems/rtems/sem.inl | 2 +- cpukit/rtems/inline/rtems/rtems/status.inl | 4 ++-- cpukit/rtems/inline/rtems/rtems/support.inl | 2 +- cpukit/rtems/inline/rtems/rtems/tasks.inl | 2 +- cpukit/rtems/inline/rtems/rtems/timer.inl | 8 +++---- 16 files changed, 53 insertions(+), 53 deletions(-) (limited to 'cpukit/rtems/inline') diff --git a/cpukit/rtems/inline/rtems/rtems/asr.inl b/cpukit/rtems/inline/rtems/rtems/asr.inl index 918a7d87c1..1cb3246f1f 100644 --- a/cpukit/rtems/inline/rtems/rtems/asr.inl +++ b/cpukit/rtems/inline/rtems/rtems/asr.inl @@ -38,7 +38,7 @@ RTEMS_INLINE_ROUTINE void _ASR_Initialize ( ASR_Information *information ) { - information->is_enabled = TRUE; + information->is_enabled = true; information->handler = NULL; information->mode_set = RTEMS_DEFAULT_MODES; information->signals_posted = 0; @@ -73,7 +73,7 @@ RTEMS_INLINE_ROUTINE void _ASR_Swap_signals ( * This function returns TRUE if the given asr_handler is NULL and * FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _ASR_Is_null_handler ( +RTEMS_INLINE_ROUTINE bool _ASR_Is_null_handler ( rtems_asr_entry asr_handler ) { @@ -86,7 +86,7 @@ RTEMS_INLINE_ROUTINE boolean _ASR_Is_null_handler ( * This function returns TRUE if there are signals pending in the * given RTEMS_ASR information record and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _ASR_Are_signals_pending ( +RTEMS_INLINE_ROUTINE bool _ASR_Are_signals_pending ( ASR_Information *information ) { diff --git a/cpukit/rtems/inline/rtems/rtems/attr.inl b/cpukit/rtems/inline/rtems/rtems/attr.inl index d66a1920ed..a426e40777 100644 --- a/cpukit/rtems/inline/rtems/rtems/attr.inl +++ b/cpukit/rtems/inline/rtems/rtems/attr.inl @@ -62,11 +62,11 @@ RTEMS_INLINE_ROUTINE rtems_attribute _Attributes_Clear ( * This function returns TRUE if the floating point attribute is * enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_floating_point( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_floating_point( rtems_attribute attribute_set ) { - return ( attribute_set & RTEMS_FLOATING_POINT ); + return ( attribute_set & RTEMS_FLOATING_POINT ) ? true : false; } #if defined(RTEMS_MULTIPROCESSING) @@ -76,11 +76,11 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_floating_point( * This function returns TRUE if the global object attribute is * enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_global( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_global( rtems_attribute attribute_set ) { - return ( attribute_set & RTEMS_GLOBAL ); + return ( attribute_set & RTEMS_GLOBAL ) ? true : false; } #endif @@ -90,11 +90,11 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_global( * This function returns TRUE if the priority attribute is * enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_priority( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_priority( rtems_attribute attribute_set ) { - return ( attribute_set & RTEMS_PRIORITY ); + return ( attribute_set & RTEMS_PRIORITY ) ? true : false; } /** @@ -103,7 +103,7 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_priority( * This function returns TRUE if the binary semaphore attribute is * enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_binary_semaphore( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_binary_semaphore( rtems_attribute attribute_set ) { @@ -116,7 +116,7 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_binary_semaphore( * This function returns TRUE if the simple binary semaphore attribute is * enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_simple_binary_semaphore( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_simple_binary_semaphore( rtems_attribute attribute_set ) { @@ -130,7 +130,7 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_simple_binary_semaphore( * This function returns TRUE if the counting semaphore attribute is * enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_counting_semaphore( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_counting_semaphore( rtems_attribute attribute_set ) { @@ -143,11 +143,11 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_counting_semaphore( * This function returns TRUE if the priority inheritance attribute * is enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_inherit_priority( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_inherit_priority( rtems_attribute attribute_set ) { - return ( attribute_set & RTEMS_INHERIT_PRIORITY ); + return ( attribute_set & RTEMS_INHERIT_PRIORITY ) ? true : false; } /** @@ -156,11 +156,11 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_inherit_priority( * This function returns TRUE if the priority ceiling attribute * is enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_priority_ceiling( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_priority_ceiling( rtems_attribute attribute_set ) { - return ( attribute_set & RTEMS_PRIORITY_CEILING ); + return ( attribute_set & RTEMS_PRIORITY_CEILING ) ? true : false; } /** @@ -169,11 +169,11 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_priority_ceiling( * This function returns TRUE if the barrier automatic release * attribute is enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_barrier_automatic( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_barrier_automatic( rtems_attribute attribute_set ) { - return ( attribute_set & RTEMS_BARRIER_AUTOMATIC_RELEASE ); + return ( attribute_set & RTEMS_BARRIER_AUTOMATIC_RELEASE ) ? true : false; } /** @@ -182,11 +182,11 @@ RTEMS_INLINE_ROUTINE boolean _Attributes_Is_barrier_automatic( * This function returns TRUE if the system task attribute * is enabled in the attribute_set and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Attributes_Is_system_task( +RTEMS_INLINE_ROUTINE bool _Attributes_Is_system_task( rtems_attribute attribute_set ) { - return ( attribute_set & RTEMS_SYSTEM_TASK ); + return ( attribute_set & RTEMS_SYSTEM_TASK ) ? true : false; } /**@}*/ diff --git a/cpukit/rtems/inline/rtems/rtems/barrier.inl b/cpukit/rtems/inline/rtems/rtems/barrier.inl index bc9d4d79dc..3bec0f2075 100644 --- a/cpukit/rtems/inline/rtems/rtems/barrier.inl +++ b/cpukit/rtems/inline/rtems/rtems/barrier.inl @@ -76,7 +76,7 @@ RTEMS_INLINE_ROUTINE Barrier_Control *_Barrier_Get ( * * This function returns TRUE if the_barrier is NULL and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Barrier_Is_null ( +RTEMS_INLINE_ROUTINE bool _Barrier_Is_null ( Barrier_Control *the_barrier ) { diff --git a/cpukit/rtems/inline/rtems/rtems/dpmem.inl b/cpukit/rtems/inline/rtems/rtems/dpmem.inl index 5528878f18..5b944484b5 100644 --- a/cpukit/rtems/inline/rtems/rtems/dpmem.inl +++ b/cpukit/rtems/inline/rtems/rtems/dpmem.inl @@ -75,9 +75,9 @@ RTEMS_INLINE_ROUTINE Dual_ported_memory_Control *_Dual_ported_memory_Get ( /** * @brief Dual_ported_memory_Is_null * - * This function returns TRUE if the_port is NULL and FALSE otherwise. + * This function returns true if the_port is NULL and false otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Dual_ported_memory_Is_null( +RTEMS_INLINE_ROUTINE bool _Dual_ported_memory_Is_null( Dual_ported_memory_Control *the_port ) { diff --git a/cpukit/rtems/inline/rtems/rtems/eventset.inl b/cpukit/rtems/inline/rtems/rtems/eventset.inl index c3ff7c4241..35b74517b2 100644 --- a/cpukit/rtems/inline/rtems/rtems/eventset.inl +++ b/cpukit/rtems/inline/rtems/rtems/eventset.inl @@ -32,7 +32,7 @@ * This function returns TRUE if on events are posted in the event_set, * and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Event_sets_Is_empty( +RTEMS_INLINE_ROUTINE bool _Event_sets_Is_empty( rtems_event_set the_event_set ) { diff --git a/cpukit/rtems/inline/rtems/rtems/message.inl b/cpukit/rtems/inline/rtems/rtems/message.inl index 1155658136..dfaeb25fb3 100644 --- a/cpukit/rtems/inline/rtems/rtems/message.inl +++ b/cpukit/rtems/inline/rtems/rtems/message.inl @@ -35,7 +35,7 @@ * This function places the_message at the rear of the outstanding * messages on the_message_queue. */ -RTEMS_INLINE_ROUTINE boolean _Message_queue_Is_null ( +RTEMS_INLINE_ROUTINE bool _Message_queue_Is_null ( Message_queue_Control *the_message_queue ) { diff --git a/cpukit/rtems/inline/rtems/rtems/modes.inl b/cpukit/rtems/inline/rtems/rtems/modes.inl index 76802a4289..d0dfe4932b 100644 --- a/cpukit/rtems/inline/rtems/rtems/modes.inl +++ b/cpukit/rtems/inline/rtems/rtems/modes.inl @@ -33,12 +33,12 @@ * This function returns TRUE if any of the mode flags in mask * are set in mode_set, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Modes_Mask_changed ( +RTEMS_INLINE_ROUTINE bool _Modes_Mask_changed ( Modes_Control mode_set, Modes_Control masks ) { - return ( mode_set & masks ); + return ( mode_set & masks ) ? true : false; } /** @@ -47,7 +47,7 @@ RTEMS_INLINE_ROUTINE boolean _Modes_Mask_changed ( * This function returns TRUE if mode_set indicates that Asynchronous * Signal Processing is disabled, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Modes_Is_asr_disabled ( +RTEMS_INLINE_ROUTINE bool _Modes_Is_asr_disabled ( Modes_Control mode_set ) { @@ -60,7 +60,7 @@ RTEMS_INLINE_ROUTINE boolean _Modes_Is_asr_disabled ( * This function returns TRUE if mode_set indicates that preemption * is enabled, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Modes_Is_preempt ( +RTEMS_INLINE_ROUTINE bool _Modes_Is_preempt ( Modes_Control mode_set ) { @@ -73,7 +73,7 @@ RTEMS_INLINE_ROUTINE boolean _Modes_Is_preempt ( * This function returns TRUE if mode_set indicates that timeslicing * is enabled, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Modes_Is_timeslice ( +RTEMS_INLINE_ROUTINE bool _Modes_Is_timeslice ( Modes_Control mode_set ) { diff --git a/cpukit/rtems/inline/rtems/rtems/options.inl b/cpukit/rtems/inline/rtems/rtems/options.inl index d079a50a44..fd8c3ba234 100644 --- a/cpukit/rtems/inline/rtems/rtems/options.inl +++ b/cpukit/rtems/inline/rtems/rtems/options.inl @@ -33,11 +33,11 @@ * This function returns TRUE if the RTEMS_NO_WAIT option is enabled in * option_set, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Options_Is_no_wait ( +RTEMS_INLINE_ROUTINE bool _Options_Is_no_wait ( rtems_option option_set ) { - return (option_set & RTEMS_NO_WAIT); + return (option_set & RTEMS_NO_WAIT) ? true : false; } /** @@ -46,11 +46,11 @@ RTEMS_INLINE_ROUTINE boolean _Options_Is_no_wait ( * This function returns TRUE if the RTEMS_EVENT_ANY option is enabled in * OPTION_SET, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Options_Is_any ( +RTEMS_INLINE_ROUTINE bool _Options_Is_any ( rtems_option option_set ) { - return (option_set & RTEMS_EVENT_ANY); + return (option_set & RTEMS_EVENT_ANY) ? true : false; } /**@}*/ diff --git a/cpukit/rtems/inline/rtems/rtems/part.inl b/cpukit/rtems/inline/rtems/rtems/part.inl index 060dd5850d..9cab7013bb 100644 --- a/cpukit/rtems/inline/rtems/rtems/part.inl +++ b/cpukit/rtems/inline/rtems/rtems/part.inl @@ -60,7 +60,7 @@ RTEMS_INLINE_ROUTINE void _Partition_Free_buffer ( * This function returns TRUE if the_buffer is on a valid buffer * boundary for the_partition, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Partition_Is_buffer_on_boundary ( +RTEMS_INLINE_ROUTINE bool _Partition_Is_buffer_on_boundary ( void *the_buffer, Partition_Control *the_partition ) @@ -81,7 +81,7 @@ RTEMS_INLINE_ROUTINE boolean _Partition_Is_buffer_on_boundary ( * This function returns TRUE if the_buffer is a valid buffer from * the_partition, otherwise FALSE is returned. */ -RTEMS_INLINE_ROUTINE boolean _Partition_Is_buffer_valid ( +RTEMS_INLINE_ROUTINE bool _Partition_Is_buffer_valid ( Chain_Node *the_buffer, Partition_Control *the_partition ) @@ -105,7 +105,7 @@ RTEMS_INLINE_ROUTINE boolean _Partition_Is_buffer_valid ( * will result in the allocation of buffers whose first byte is * properly aligned, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Partition_Is_buffer_size_aligned ( +RTEMS_INLINE_ROUTINE bool _Partition_Is_buffer_size_aligned ( uint32_t buffer_size ) { @@ -162,7 +162,7 @@ RTEMS_INLINE_ROUTINE Partition_Control *_Partition_Get ( * This function returns TRUE if the_partition is NULL * and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Partition_Is_null ( +RTEMS_INLINE_ROUTINE bool _Partition_Is_null ( Partition_Control *the_partition ) { diff --git a/cpukit/rtems/inline/rtems/rtems/ratemon.inl b/cpukit/rtems/inline/rtems/rtems/ratemon.inl index 3fcb845da1..2e8964faa1 100644 --- a/cpukit/rtems/inline/rtems/rtems/ratemon.inl +++ b/cpukit/rtems/inline/rtems/rtems/ratemon.inl @@ -76,7 +76,7 @@ RTEMS_INLINE_ROUTINE Rate_monotonic_Control *_Rate_monotonic_Get ( * This function returns TRUE if the_period is in the ACTIVE state, * and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_active ( +RTEMS_INLINE_ROUTINE bool _Rate_monotonic_Is_active ( Rate_monotonic_Control *the_period ) { @@ -89,7 +89,7 @@ RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_active ( * This function returns TRUE if the_period is in the ACTIVE state, * and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_inactive ( +RTEMS_INLINE_ROUTINE bool _Rate_monotonic_Is_inactive ( Rate_monotonic_Control *the_period ) { @@ -102,7 +102,7 @@ RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_inactive ( * This function returns TRUE if the_period is in the EXPIRED state, * and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_expired ( +RTEMS_INLINE_ROUTINE bool _Rate_monotonic_Is_expired ( Rate_monotonic_Control *the_period ) { @@ -114,7 +114,7 @@ RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_expired ( * * This function returns TRUE if the_period is NULL and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Rate_monotonic_Is_null ( +RTEMS_INLINE_ROUTINE bool _Rate_monotonic_Is_null ( Rate_monotonic_Control *the_period ) { diff --git a/cpukit/rtems/inline/rtems/rtems/region.inl b/cpukit/rtems/inline/rtems/rtems/region.inl index b5f612ef51..18380e2862 100644 --- a/cpukit/rtems/inline/rtems/rtems/region.inl +++ b/cpukit/rtems/inline/rtems/rtems/region.inl @@ -89,7 +89,7 @@ RTEMS_INLINE_ROUTINE void *_Region_Allocate_segment ( * * This function frees the_segment to the_region. */ -RTEMS_INLINE_ROUTINE boolean _Region_Free_segment ( +RTEMS_INLINE_ROUTINE bool _Region_Free_segment ( Region_Control *the_region, void *the_segment ) @@ -102,7 +102,7 @@ RTEMS_INLINE_ROUTINE boolean _Region_Free_segment ( * * This function returns TRUE if the_region is NULL and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Region_Is_null ( +RTEMS_INLINE_ROUTINE bool _Region_Is_null ( Region_Control *the_region ) { diff --git a/cpukit/rtems/inline/rtems/rtems/sem.inl b/cpukit/rtems/inline/rtems/rtems/sem.inl index 43523eba03..de876d896a 100644 --- a/cpukit/rtems/inline/rtems/rtems/sem.inl +++ b/cpukit/rtems/inline/rtems/rtems/sem.inl @@ -97,7 +97,7 @@ RTEMS_INLINE_ROUTINE Semaphore_Control *_Semaphore_Get_interrupt_disable ( * * This function returns TRUE if the_semaphore is NULL and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Semaphore_Is_null ( +RTEMS_INLINE_ROUTINE bool _Semaphore_Is_null ( Semaphore_Control *the_semaphore ) { diff --git a/cpukit/rtems/inline/rtems/rtems/status.inl b/cpukit/rtems/inline/rtems/rtems/status.inl index 042f426de3..ba3d41b887 100644 --- a/cpukit/rtems/inline/rtems/rtems/status.inl +++ b/cpukit/rtems/inline/rtems/rtems/status.inl @@ -33,7 +33,7 @@ * This function returns TRUE if the status code is equal to RTEMS_SUCCESSFUL, * and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean rtems_is_status_successful( +RTEMS_INLINE_ROUTINE bool rtems_is_status_successful( rtems_status_code code ) { @@ -46,7 +46,7 @@ RTEMS_INLINE_ROUTINE boolean rtems_is_status_successful( * This function returns TRUE if the status code1 is equal to code2, * and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean rtems_are_statuses_equal( +RTEMS_INLINE_ROUTINE bool rtems_are_statuses_equal( rtems_status_code code1, rtems_status_code code2 ) diff --git a/cpukit/rtems/inline/rtems/rtems/support.inl b/cpukit/rtems/inline/rtems/rtems/support.inl index dadcbc7baa..0f4defc92f 100644 --- a/cpukit/rtems/inline/rtems/rtems/support.inl +++ b/cpukit/rtems/inline/rtems/rtems/support.inl @@ -32,7 +32,7 @@ * * This function returns TRUE if the name is valid, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE rtems_boolean rtems_is_name_valid ( +RTEMS_INLINE_ROUTINE bool rtems_is_name_valid ( rtems_name name ) { diff --git a/cpukit/rtems/inline/rtems/rtems/tasks.inl b/cpukit/rtems/inline/rtems/rtems/tasks.inl index ca63aa83f5..e0fe241d45 100644 --- a/cpukit/rtems/inline/rtems/rtems/tasks.inl +++ b/cpukit/rtems/inline/rtems/rtems/tasks.inl @@ -72,7 +72,7 @@ RTEMS_INLINE_ROUTINE Priority_Control _RTEMS_tasks_Priority_to_Core( * This function returns TRUE if the_priority is a valid user task priority * and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _RTEMS_tasks_Priority_is_valid ( +RTEMS_INLINE_ROUTINE bool _RTEMS_tasks_Priority_is_valid ( rtems_task_priority the_priority ) { diff --git a/cpukit/rtems/inline/rtems/rtems/timer.inl b/cpukit/rtems/inline/rtems/rtems/timer.inl index 30d8407d5d..10cae3f67d 100644 --- a/cpukit/rtems/inline/rtems/rtems/timer.inl +++ b/cpukit/rtems/inline/rtems/rtems/timer.inl @@ -75,7 +75,7 @@ RTEMS_INLINE_ROUTINE Timer_Control *_Timer_Get ( * This function returns TRUE if the class is that of an INTERVAL * timer, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Timer_Is_interval_class ( +RTEMS_INLINE_ROUTINE bool _Timer_Is_interval_class ( Timer_Classes the_class ) { @@ -88,7 +88,7 @@ RTEMS_INLINE_ROUTINE boolean _Timer_Is_interval_class ( * This function returns TRUE if the class is that of an INTERVAL * timer, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Timer_Is_timer_of_day_class ( +RTEMS_INLINE_ROUTINE bool _Timer_Is_timer_of_day_class ( Timer_Classes the_class ) { @@ -101,7 +101,7 @@ RTEMS_INLINE_ROUTINE boolean _Timer_Is_timer_of_day_class ( * This function returns TRUE if the class is that of a DORMANT * timer, and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Timer_Is_dormant_class ( +RTEMS_INLINE_ROUTINE bool _Timer_Is_dormant_class ( Timer_Classes the_class ) { @@ -113,7 +113,7 @@ RTEMS_INLINE_ROUTINE boolean _Timer_Is_dormant_class ( * * This function returns TRUE if the_timer is NULL and FALSE otherwise. */ -RTEMS_INLINE_ROUTINE boolean _Timer_Is_null ( +RTEMS_INLINE_ROUTINE bool _Timer_Is_null ( Timer_Control *the_timer ) { -- cgit v1.2.3