[BACK]Return to db_command.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / ddb

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/ddb/db_command.c between version 1.10 and 1.11

version 1.10, 1994/03/23 20:00:56 version 1.11, 1994/04/27 10:49:07
Line 319  db_object_print_cmd(addr, have_addr, cou
Line 319  db_object_print_cmd(addr, have_addr, cou
  * 'show' commands   * 'show' commands
  */   */
 extern void     db_show_all_procs();  extern void     db_show_all_procs();
   extern void     db_show_callout();
 extern void     db_listbreak_cmd();  extern void     db_listbreak_cmd();
 extern void     db_listwatch_cmd();  extern void     db_listwatch_cmd();
 extern void     db_show_regs();  extern void     db_show_regs();
Line 326  void  db_show_help();
Line 327  void  db_show_help();
   
 struct db_command db_show_all_cmds[] = {  struct db_command db_show_all_cmds[] = {
         { "procs",      db_show_all_procs,0,    0 },          { "procs",      db_show_all_procs,0,    0 },
           { "callout",    db_show_callout,0,      0 },
         { (char *)0 }          { (char *)0 }
 };  };
   
Line 377  struct db_command db_command_table[] = {
Line 379  struct db_command db_command_table[] = {
         { "trace",      db_stack_trace_cmd,     0,              0 },          { "trace",      db_stack_trace_cmd,     0,              0 },
         { "call",       db_fncall,              CS_OWN,         0 },          { "call",       db_fncall,              CS_OWN,         0 },
         { "ps",         db_show_all_procs,      0,              0 },          { "ps",         db_show_all_procs,      0,              0 },
           { "callout",    db_show_callout,        0,              0 },
         { "show",       0,                      0,              db_show_cmds },          { "show",       0,                      0,              db_show_cmds },
         { (char *)0, }          { (char *)0, }
 };  };

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

CVSweb <webmaster@jp.NetBSD.org>