2008-09-03 Joel Sherrill <joel.sherrill@OARcorp.com>

* timer/timer.c: Convert using "bool".
This commit is contained in:
Joel Sherrill
2008-09-03 20:44:22 +00:00
parent 40e7ae2296
commit c8b03dbd81
6 changed files with 21 additions and 9 deletions

View File

@@ -1,3 +1,7 @@
2008-09-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* timer/timer.c: Convert using "bool".
2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* timer/timer.c: Eliminate empty function from every benchmark timer

View File

@@ -22,9 +22,9 @@
#include <bsp.h>
rtems_boolean benchmark_timer_find_average_overhead;
bool benchmark_timer_find_average_overhead;
rtems_boolean benchmark_timer_is_initialized = FALSE;
bool benchmark_timer_is_initialized = FALSE;
void benchmark_timer_initialize(void)
{
@@ -81,7 +81,7 @@ int benchmark_timer_read(void)
}
void benchmark_timer_disable_subtracting_average_overhead(
rtems_boolean find_flag
bool find_flag
)
{
benchmark_timer_find_average_overhead = find_flag;

View File

@@ -1,3 +1,7 @@
2008-09-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* timer/timer.c: Convert using "bool".
2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* timer/timer.c: Eliminate empty function from every benchmark timer

View File

@@ -22,9 +22,9 @@
#include <bsp.h>
rtems_boolean benchmark_timer_find_average_overhead;
bool benchmark_timer_find_average_overhead;
rtems_boolean benchmark_timer_is_initialized = FALSE;
bool benchmark_timer_is_initialized = FALSE;
void benchmark_timer_initialize(void)
{
@@ -71,7 +71,7 @@ int benchmark_timer_read(void)
}
void benchmark_timer_disable_subtracting_average_overhead(
rtems_boolean find_flag
bool find_flag
)
{
benchmark_timer_find_average_overhead = find_flag;

View File

@@ -1,3 +1,7 @@
2008-09-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* timer/timer.c: Convert using "bool".
2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* timer/timer.c: Eliminate empty function from every benchmark timer

View File

@@ -30,9 +30,9 @@
#define LEON3_TIMER_INDEX 0
#endif
rtems_boolean benchmark_timer_find_average_overhead;
bool benchmark_timer_find_average_overhead;
rtems_boolean benchmark_timer_is_initialized = FALSE;
bool benchmark_timer_is_initialized = FALSE;
extern volatile LEON3_Timer_Regs_Map *LEON3_Timer_Regs;
@@ -78,7 +78,7 @@ int benchmark_timer_read(void)
}
void benchmark_timer_disable_subtracting_average_overhead(
rtems_boolean find_flag
bool find_flag
)
{
benchmark_timer_find_average_overhead = find_flag;