From: Jan-Benedict G. <jb...@us...> - 2005-10-03 12:36:07
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19989 Modified Files: process.c Log Message: - Print out a nicer message during process debugging (which is per default switched off). Helped to de-confuze me during toolchain hacking (and continues to do so...). Index: process.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/process.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- process.c 29 May 2005 12:10:54 -0000 1.30 +++ process.c 3 Oct 2005 12:35:54 -0000 1.31 @@ -269,8 +269,8 @@ unsigned long new_sp) { #ifdef VAX_PROCESS_DEBUG - printk("PID %d: starting thread %8lX %8lX %8lX\n", current->pid, new_pc, - new_sp, regs->sp); + printk("PID %d: starting thread pc=0x%08lx new_sp=0x%08lx regs->sp=" + "0x%08lx\n", current->pid, new_pc, new_sp, regs->sp); #endif set_fs(USER_DS); regs->pc = new_pc + 2; |