Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm32/arm32 sort arm32_db_command_table[]



details:   https://anonhg.NetBSD.org/src/rev/63a90d574abd
branches:  trunk
changeset: 477707:63a90d574abd
user:      lukem <lukem%NetBSD.org@localhost>
date:      Thu Oct 28 06:49:20 1999 +0000

description:
sort arm32_db_command_table[]

diffstat:

 sys/arch/arm32/arm32/db_interface.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (30 lines):

diff -r ae3312d0fce9 -r 63a90d574abd sys/arch/arm32/arm32/db_interface.c
--- a/sys/arch/arm32/arm32/db_interface.c       Thu Oct 28 06:42:31 1999 +0000
+++ b/sys/arch/arm32/arm32/db_interface.c       Thu Oct 28 06:49:20 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: db_interface.c,v 1.29 1999/10/12 17:08:57 jdolecek Exp $       */
+/*     $NetBSD: db_interface.c,v 1.30 1999/10/28 06:49:20 lukem Exp $  */
 
 /* 
  * Copyright (c) 1996 Scott K. Stevens
@@ -312,16 +312,16 @@
 #endif
 
 struct db_command arm32_db_command_table[] = {
-       { "vmstat",     db_show_vmstat_cmd,     0, NULL },
-       { "vnode",      db_show_vnode_cmd,      0, NULL },
+       { "frame",      db_show_frame_cmd,      0, NULL },
        { "intrchain",  db_show_intrchain_cmd,  0, NULL },
-       { "panic",      db_show_panic_cmd,      0, NULL },
-       { "frame",      db_show_frame_cmd,      0, NULL },
 #ifdef OFW
        { "ofboot",     db_of_boot_cmd,         0, NULL },
        { "ofenter",    db_of_enter_cmd,        0, NULL },
        { "ofexit",     db_of_exit_cmd,         0, NULL },
 #endif
+       { "panic",      db_show_panic_cmd,      0, NULL },
+       { "vmstat",     db_show_vmstat_cmd,     0, NULL },
+       { "vnode",      db_show_vnode_cmd,      0, NULL },
        { NULL,         NULL,                   0, NULL }
 };
 



Home | Main Index | Thread Index | Old Index