From 74ea5e7e82ed3a4f7fa981907177cf55b9b88f07 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sat, 27 Jul 2013 19:04:56 +0800 Subject: [PATCH] Kernel/x86 - Included EAX in user state dump --- KernelLand/Kernel/arch/x86/proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KernelLand/Kernel/arch/x86/proc.c b/KernelLand/Kernel/arch/x86/proc.c index 4847d510..2c595168 100644 --- a/KernelLand/Kernel/arch/x86/proc.c +++ b/KernelLand/Kernel/arch/x86/proc.c @@ -714,7 +714,7 @@ void Proc_DumpThreadCPUState(tThread *Thread) return ; } - Log(" at %04x:%08x", regs->cs, regs->eip); + Log(" at %04x:%08x [EAX:%x]", regs->cs, regs->eip, regs->eax); return ; } -- 2.20.1