From cc732067b72d1d7f0f7cafa97d43d1598aaa122e Mon Sep 17 00:00:00 2001 From: jhawk Date: Mon, 15 May 2000 19:56:43 +0000 Subject: "p" should be an alias for "print", and was until "ps" was added. Now it is, again. --- sys/ddb/db_command.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/ddb/db_command.c') diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 479c3cb4fb7..6d668d1bf36 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -1,4 +1,4 @@ -/* $NetBSD: db_command.c,v 1.38 2000/04/13 22:48:29 jhawk Exp $ */ +/* $NetBSD: db_command.c,v 1.39 2000/05/15 19:56:43 jhawk Exp $ */ /* * Mach Operating System @@ -469,6 +469,7 @@ struct db_command db_command_table[] = { #endif { "match", db_trace_until_matching_cmd,0, NULL }, { "next", db_trace_until_matching_cmd,0, NULL }, + { "p", db_print_cmd, 0, NULL }, { "print", db_print_cmd, 0, NULL }, { "ps", db_show_all_procs, 0, NULL }, { "reboot", db_reboot_cmd, CS_OWN, NULL }, -- cgit