diff options
Diffstat (limited to 'sys/ddb/db_run.c')
-rw-r--r-- | sys/ddb/db_run.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c index 7e92501..dc0e2ab 100644 --- a/sys/ddb/db_run.c +++ b/sys/ddb/db_run.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_run.c,v 1.5 1995/05/30 07:57:08 rgrimes Exp $ + * $Id: db_run.c,v 1.6 1995/11/24 14:13:40 bde Exp $ */ /* @@ -67,6 +67,10 @@ extern void db_set_single_step __P((db_regs_t *regs); extern void db_clear_single_step __P((db_regs_t *regs)); #endif +#ifdef notused +static void db_single_step __P((db_regs_t *regs)); +#endif + boolean_t db_stop_at_pc(is_breakpoint) boolean_t *is_breakpoint; @@ -209,7 +213,8 @@ db_restart_at_pc(watchpt) } } -void +#ifdef notused +static void db_single_step(regs) db_regs_t *regs; { @@ -218,6 +223,7 @@ db_single_step(regs) db_set_single_step(regs); } } +#endif #ifdef SOFTWARE_SSTEP /* |