diff options
author | phk <phk@FreeBSD.org> | 2003-06-01 09:06:23 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-06-01 09:06:23 +0000 |
commit | bfaecf4a475679608daef8e8552b99eb48ad9899 (patch) | |
tree | 7f1e3d27335e286e0ad9284d0899221e979c4f5f /sys/ddb | |
parent | 51281e3429743b3e87e9c30c9c22306a8b2ae491 (diff) | |
download | FreeBSD-src-bfaecf4a475679608daef8e8552b99eb48ad9899.zip FreeBSD-src-bfaecf4a475679608daef8e8552b99eb48ad9899.tar.gz |
Make "where" an alias for "trace"
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index ab58bc2..5221fab 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -414,6 +414,7 @@ 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_cmd, 0, 0 }, + { "where", db_stack_trace_cmd, 0, 0 }, { "call", db_fncall, CS_OWN, 0 }, { "show", 0, 0, db_show_cmds }, { "ps", db_ps, 0, 0 }, |