[BACK]Return to db_xxx.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_xxx.c between version 1.38.10.2 and 1.39

version 1.38.10.2, 2006/12/10 07:16:52 version 1.39, 2006/10/12 01:30:50
Line 67  __KERNEL_RCSID(0, "$NetBSD$");
Line 67  __KERNEL_RCSID(0, "$NetBSD$");
 #endif  #endif
   
 void  void
 db_kill_proc(db_expr_t addr, int haddr,  db_kill_proc(db_expr_t addr __unused, int haddr __unused,
     db_expr_t count, const char *modif)      db_expr_t count __unused, const char *modif __unused)
 {  {
         struct proc *p;          struct proc *p;
         db_expr_t pid, sig;          db_expr_t pid, sig;
Line 105  db_kill_proc(db_expr_t addr, int haddr,
Line 105  db_kill_proc(db_expr_t addr, int haddr,
   
 #ifdef KGDB  #ifdef KGDB
 void  void
 db_kgdb_cmd(db_expr_t addr, int haddr,  db_kgdb_cmd(db_expr_t addr __unused, int haddr __unused,
     db_expr_t count, const char *modif)      db_expr_t count __unused, const char *modif __unused)
 {  {
         kgdb_active++;          kgdb_active++;
         kgdb_trap(db_trap_type, DDB_REGS);          kgdb_trap(db_trap_type, DDB_REGS);
Line 115  db_kgdb_cmd(db_expr_t addr, int haddr,
Line 115  db_kgdb_cmd(db_expr_t addr, int haddr,
 #endif  #endif
   
 void  void
 db_show_all_procs(db_expr_t addr, int haddr,  db_show_all_procs(db_expr_t addr __unused, int haddr __unused,
     db_expr_t count, const char *modif)      db_expr_t count __unused, const char *modif)
 {  {
         int i;          int i;
   
Line 233  db_show_all_procs(db_expr_t addr, int ha
Line 233  db_show_all_procs(db_expr_t addr, int ha
 }  }
   
 void  void
 db_show_all_pools(db_expr_t addr, int haddr,  db_show_all_pools(db_expr_t addr __unused, int haddr __unused,
     db_expr_t count, const char *modif)      db_expr_t count __unused, const char *modif)
 {  {
   
         pool_printall(modif, db_printf);          pool_printall(modif, db_printf);
 }  }
   
 void  void
 db_dmesg(db_expr_t addr, int haddr, db_expr_t count,  db_dmesg(db_expr_t addr, int haddr, db_expr_t count __unused,
     const char *modif)      const char *modif __unused)
 {  {
         struct kern_msgbuf *mbp;          struct kern_msgbuf *mbp;
         db_expr_t print;          db_expr_t print;
Line 295  db_dmesg(db_expr_t addr, int haddr, db_e
Line 295  db_dmesg(db_expr_t addr, int haddr, db_e
 #endif  #endif
   
 void  void
 db_show_sched_qs(db_expr_t addr, int haddr,  db_show_sched_qs(db_expr_t addr __unused, int haddr __unused,
     db_expr_t count, const char *modif)      db_expr_t count __unused, const char *modif __unused)
 {  {
         struct prochd *ph;          struct prochd *ph;
         struct lwp *l;          struct lwp *l;

Legend:
Removed from v.1.38.10.2  
changed lines
  Added in v.1.39

CVSweb <webmaster@jp.NetBSD.org>