From d2266994e28efb35027397d9e6f30a973f2ac976 Mon Sep 17 00:00:00 2001 From: chs Date: Fri, 10 Oct 2003 15:21:24 +0000 Subject: [PATCH] add "b" as a synonym for "break", since someone added "bt" and made "b" an ambiguous prefix. --- sys/ddb/db_command.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 49b4204553c5..883062b35e7d 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -1,4 +1,4 @@ -/* $NetBSD: db_command.c,v 1.72 2003/09/20 03:02:03 thorpej Exp $ */ +/* $NetBSD: db_command.c,v 1.73 2003/10/10 15:21:24 chs Exp $ */ /* * Mach Operating System @@ -31,7 +31,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: db_command.c,v 1.72 2003/09/20 03:02:03 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: db_command.c,v 1.73 2003/10/10 15:21:24 chs Exp $"); #include "opt_ddb.h" #include "opt_kgdb.h" @@ -152,6 +152,7 @@ static const struct db_command db_show_cmds[] = { }; static const struct db_command db_command_table[] = { + { "b", db_breakpoint_cmd, 0, NULL }, { "break", db_breakpoint_cmd, 0, NULL }, { "bt", db_stack_trace_cmd, 0, NULL }, { "c", db_continue_cmd, 0, NULL },