patch-2.0.35 linux/kernel/sched.c
Next file: linux/kernel/sysctl.c
Previous file: linux/kernel/ksyms.c
Back to the patch index
Back to the overall index
- Lines: 39
- Date:
Mon Jul 13 13:47:40 1998
- Orig file:
v2.0.34/linux/kernel/sched.c
- Orig date:
Tue Dec 2 13:52:33 1997
diff -u --recursive --new-file v2.0.34/linux/kernel/sched.c linux/kernel/sched.c
@@ -87,6 +87,7 @@
#define _S(nr) (1<<((nr)-1))
extern void mem_use(void);
+extern unsigned long get_wchan(struct task_struct *);
static unsigned long init_kernel_stack[1024] = { STACK_MAGIC, };
unsigned long init_user_stack[1024] = { STACK_MAGIC, };
@@ -1681,11 +1682,13 @@
printk(" current ");
else
printk(" %08lX ", thread_saved_pc(&p->tss));
+ printk("%08lX ", get_wchan(p));
#else
if (p == current)
printk(" current task ");
else
printk(" %016lx ", thread_saved_pc(&p->tss));
+ printk("%08lX ", get_wchan(p) & 0xffffffffL);
#endif
for (free = 1; free < PAGE_SIZE/sizeof(long) ; free++) {
if (((unsigned long *)p->kernel_stack_page)[free])
@@ -1712,12 +1715,12 @@
#if ((~0UL) == 0xffffffff)
printk("\n"
- " free sibling\n");
- printk(" task PC stack pid father child younger older\n");
+ " free sibling\n");
+ printk(" task PC wchan stack pid father child younger older\n");
#else
printk("\n"
- " free sibling\n");
- printk(" task PC stack pid father child younger older\n");
+ " free sibling\n");
+ printk(" task PC wchan stack pid father child younger older\n");
#endif
for (i=0 ; i<NR_TASKS ; i++)
if (task[i])
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov