summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/monitor/mon-symbols.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 09:35:34 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 09:35:34 +0000
commit2326f0d934d3fb016e5da62fdac2b52d9d411f4a (patch)
tree260d0b196ffd14bf9082c91f96bad101e5596859 /cpukit/libmisc/monitor/mon-symbols.c
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-2326f0d934d3fb016e5da62fdac2b52d9d411f4a.tar.bz2
Convert to using "bool".
Diffstat (limited to 'cpukit/libmisc/monitor/mon-symbols.c')
-rw-r--r--cpukit/libmisc/monitor/mon-symbols.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/libmisc/monitor/mon-symbols.c b/cpukit/libmisc/monitor/mon-symbols.c
index d891e13cc3..6f1c45a8e2 100644
--- a/cpukit/libmisc/monitor/mon-symbols.c
+++ b/cpukit/libmisc/monitor/mon-symbols.c
@@ -68,7 +68,7 @@ rtems_symbol_t *
rtems_symbol_create(
rtems_symbol_table_t *table,
char *name,
- uint32_t value
+ uint32_t value
)
{
size_t symbol_length;
@@ -172,7 +172,7 @@ rtems_symbol_sort(rtems_symbol_table_t *table)
rtems_symbol_t *
rtems_symbol_value_lookup(
rtems_symbol_table_t *table,
- uint32_t value
+ uint32_t value
)
{
rtems_symbol_t *sp;
@@ -234,7 +234,7 @@ rtems_symbol_value_lookup(
const rtems_symbol_t *
rtems_symbol_value_lookup_exact(
rtems_symbol_table_t *table,
- uint32_t value
+ uint32_t value
)
{
uint32_t s;
@@ -384,7 +384,7 @@ rtems_monitor_symbol_canonical_by_value(
uint32_t
rtems_monitor_symbol_dump(
rtems_monitor_symbol_t *canonical_symbol,
- boolean verbose
+ bool verbose
)
{
uint32_t length = 0;
@@ -419,7 +419,7 @@ rtems_monitor_symbol_dump(
void
rtems_monitor_symbol_dump_all(
rtems_symbol_table_t *table,
- boolean verbose
+ bool verbose
)
{
uint32_t s;
@@ -440,7 +440,7 @@ rtems_monitor_symbol_dump_all(
rtems_monitor_symbol_t canonical_symbol;
rtems_monitor_symbol_canonical(&canonical_symbol, sp);
- rtems_monitor_symbol_dump(&canonical_symbol, TRUE);
+ rtems_monitor_symbol_dump(&canonical_symbol, true);
fprintf(stdout,"\n");
}
}
@@ -455,7 +455,7 @@ rtems_monitor_symbol_cmd(
int argc,
char **argv,
rtems_monitor_command_arg_t* command_arg,
- boolean verbose
+ bool verbose
)
{
int arg;