summaryrefslogtreecommitdiffstats
path: root/c/src/libmisc/monitor/mon-extension.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-18 20:55:13 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-18 20:55:13 +0000
commitbe95da0e1960a9113b7f9607ecdb7b4a35c433ba (patch)
treedbb59759988562f978655199748baaffac303a49 /c/src/libmisc/monitor/mon-extension.c
parentdummy function added to satisfy ANSI (diff)
downloadrtems-be95da0e1960a9113b7f9607ecdb7b4a35c433ba.tar.bz2
casts added to numerous arguments, prototypes corrected, and
proper include files added.
Diffstat (limited to 'c/src/libmisc/monitor/mon-extension.c')
-rw-r--r--c/src/libmisc/monitor/mon-extension.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/c/src/libmisc/monitor/mon-extension.c b/c/src/libmisc/monitor/mon-extension.c
index 4afecaa617..18f6cf2d47 100644
--- a/c/src/libmisc/monitor/mon-extension.c
+++ b/c/src/libmisc/monitor/mon-extension.c
@@ -19,22 +19,22 @@ rtems_monitor_extension_canonical(
rtems_extensions_table *e = &rtems_extension->Extension.Callouts;
rtems_monitor_symbol_canonical_by_value(&canonical_extension->e_create,
- e->thread_create);
+ (void *) e->thread_create);
rtems_monitor_symbol_canonical_by_value(&canonical_extension->e_start,
- e->thread_start);
+ (void *) e->thread_start);
rtems_monitor_symbol_canonical_by_value(&canonical_extension->e_restart,
- e->thread_restart);
+ (void *) e->thread_restart);
rtems_monitor_symbol_canonical_by_value(&canonical_extension->e_delete,
- e->thread_delete);
+ (void *) e->thread_delete);
rtems_monitor_symbol_canonical_by_value(&canonical_extension->e_tswitch,
- e->thread_switch);
+ (void *) e->thread_switch);
rtems_monitor_symbol_canonical_by_value(&canonical_extension->e_begin,
- e->thread_begin);
+ (void *) e->thread_begin);
rtems_monitor_symbol_canonical_by_value(&canonical_extension->e_exitted,
- e->thread_exitted);
+ (void *) e->thread_exitted);
rtems_monitor_symbol_canonical_by_value(&canonical_extension->e_fatal,
- e->fatal);
+ (void *) e->fatal);
}
void