summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/c4x/c4xsim
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 08:08:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 08:08:39 +0000
commit14d7c5a7b57c0befa068d8fa1cf8f21fdbc45094 (patch)
treec4e1f230c4cd1f5c927c12beab86dce63bc9200b /c/src/lib/libbsp/c4x/c4xsim
parent2008-09-05 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-14d7c5a7b57c0befa068d8fa1cf8f21fdbc45094.tar.bz2
Convert to "bool".
Diffstat (limited to 'c/src/lib/libbsp/c4x/c4xsim')
-rw-r--r--c/src/lib/libbsp/c4x/c4xsim/timer/timer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/c4x/c4xsim/timer/timer.c b/c/src/lib/libbsp/c4x/c4xsim/timer/timer.c
index 999cd6a2a3..8b61bfb6d3 100644
--- a/c/src/lib/libbsp/c4x/c4xsim/timer/timer.c
+++ b/c/src/lib/libbsp/c4x/c4xsim/timer/timer.c
@@ -23,7 +23,7 @@
#include <rtems/tic4x/c4xio.h>
uint32_t Timer_interrupts;
-rtems_boolean benchmark_timer_find_average_overhead;
+bool benchmark_timer_find_average_overhead;
static uint32_t start;
@@ -83,7 +83,7 @@ int benchmark_timer_read( void )
total = clicks * 1;
- if ( benchmark_timer_find_average_overhead == 1 ) {
+ if ( benchmark_timer_find_average_overhead == true ) {
return total; /* in count units where each count is */
/* 1 / (clock frequency/2) */
} else {
@@ -98,7 +98,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;