summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/src/rtems-bsd-shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsbsd/src/rtems-bsd-shell.c')
-rw-r--r--rtemsbsd/src/rtems-bsd-shell.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/rtemsbsd/src/rtems-bsd-shell.c b/rtemsbsd/src/rtems-bsd-shell.c
index 786b7124..f80e9371 100644
--- a/rtemsbsd/src/rtems-bsd-shell.c
+++ b/rtemsbsd/src/rtems-bsd-shell.c
@@ -52,23 +52,6 @@
#include <rtems/shell.h>
static void
-rtems_bsd_dump_callout(void)
-{
- rtems_chain_control *chain = &rtems_bsd_callout_chain;
- rtems_chain_node *node = rtems_chain_first(chain);
-
- printf("callout dump:\n");
-
- while (!rtems_chain_is_tail(chain, node)) {
- struct callout *c = (struct callout *) node;
-
- printf("\t%08x\n", c->c_id);
-
- node = rtems_chain_next(node);
- }
-}
-
-static void
rtems_bsd_dump_mtx(void)
{
rtems_chain_control *chain = &rtems_bsd_mtx_chain;
@@ -169,10 +152,6 @@ rtems_bsd_info(int argc, char **argv)
rtems_bsd_dump_thread();
usage = false;
}
- if (CMP("callout")) {
- rtems_bsd_dump_callout();
- usage = false;
- }
}
if (usage) {