diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2005-10-24 15:21:36 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2005-10-24 15:21:36 +0000 |
| commit | 3924da21a3244a62f81bfc70ffe337c680d4f4d7 (patch) | |
| tree | 56dd7fd460c705fa300867babf16e85abc62542f | |
| parent | 198b0a3b71468182952344eaa5b03dd2b405c689 (diff) | |
Notes
| -rw-r--r-- | sys/ddb/db_command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 8b49c0484319..78fbf3998edc 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -115,8 +115,9 @@ static struct command db_command_table[] = { { "next", db_trace_until_matching_cmd,0, 0 }, { "match", db_trace_until_matching_cmd,0, 0 }, { "trace", db_stack_trace, CS_OWN, 0 }, - { "traceall", db_stack_trace_all, 0, 0 }, + { "alltrace", db_stack_trace_all, 0, 0 }, { "where", db_stack_trace, CS_OWN, 0 }, + { "bt", db_stack_trace, CS_OWN, 0 }, { "call", db_fncall, CS_OWN, 0 }, { "show", 0, 0, db_show_cmds }, { "ps", db_ps, 0, 0 }, |
