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

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

Diff for /src/sys/kern/kern_runq.c between version 1.29 and 1.30

version 1.29, 2010/01/13 01:57:17 version 1.30, 2010/03/03 00:47:30
Line 892  sched_print_runqueue(void (*pr)(const ch
Line 892  sched_print_runqueue(void (*pr)(const ch
             "LID", "PRI", "EPRI", "FL", "ST", "LWP", "CPU", "TCI", "LRTICKS");              "LID", "PRI", "EPRI", "FL", "ST", "LWP", "CPU", "TCI", "LRTICKS");
   
         PROCLIST_FOREACH(p, &allproc) {          PROCLIST_FOREACH(p, &allproc) {
                 if ((p->p_flag & PK_MARKER) != 0)  
                         continue;  
                 (*pr)(" /- %d (%s)\n", (int)p->p_pid, p->p_comm);                  (*pr)(" /- %d (%s)\n", (int)p->p_pid, p->p_comm);
                 LIST_FOREACH(l, &p->p_lwps, l_sibling) {                  LIST_FOREACH(l, &p->p_lwps, l_sibling) {
                         ci = l->l_cpu;                          ci = l->l_cpu;

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30

CVSweb <webmaster@jp.NetBSD.org>