[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.7 and 1.8

version 1.7, 2000/03/23 07:01:25 version 1.8, 2000/03/26 20:24:12
Line 171  db_show_all_procs(addr, haddr, count, mo
Line 171  db_show_all_procs(addr, haddr, count, mo
                                     p->p_emul->e_name,p->p_priority);                                      p->p_emul->e_name,p->p_priority);
                                 calcru(p, tv+0, tv+1, tv+2);                                  calcru(p, tv+0, tv+1, tv+2);
                                 for(i = 0; i < 2; ++i) {                                  for(i = 0; i < 2; ++i) {
                                         db_printf("%4ld.%1ld", tv[i].tv_sec,                                          db_printf("%4ld.%1ld",
                                             tv[i].tv_usec/100000);                                              (long)tv[i].tv_sec,
                                               (long)tv[i].tv_usec/100000);
                                 }                                  }
                                 if(p->p_wchan && p->p_wmesg) {                                  if(p->p_wchan && p->p_wmesg) {
                                         db_printf(" %-12s", p->p_wmesg);                                          db_printf(" %-12s", p->p_wmesg);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

CVSweb <webmaster@jp.NetBSD.org>