From 37795b1d6f1af4cc89a538bb51c75ff6c4fad70c Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 5 Dec 2016 09:25:56 -0800 Subject: [PATCH] kernel - Remove debugging kprintf * Remove the 'exit race handled' debugging kprintf. --- sys/platform/pc64/x86_64/trap.c | 2 -- sys/platform/vkernel64/x86_64/trap.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/sys/platform/pc64/x86_64/trap.c b/sys/platform/pc64/x86_64/trap.c index 171d41974f..57fc8ccf7f 100644 --- a/sys/platform/pc64/x86_64/trap.c +++ b/sys/platform/pc64/x86_64/trap.c @@ -1384,8 +1384,6 @@ generic_lwp_return(struct lwp *lp, struct trapframe *frame) * KILL signal. */ if (p->p_flags & P_WEXIT) { - kprintf("pid %d (%s) exit race handled\n", - p->p_pid, p->p_comm); lwpsignal(p, lp, SIGKILL); } diff --git a/sys/platform/vkernel64/x86_64/trap.c b/sys/platform/vkernel64/x86_64/trap.c index 66a9023022..1eba56ae57 100644 --- a/sys/platform/vkernel64/x86_64/trap.c +++ b/sys/platform/vkernel64/x86_64/trap.c @@ -1367,8 +1367,6 @@ generic_lwp_return(struct lwp *lp, struct trapframe *frame) * KILL signal. */ if (p->p_flags & P_WEXIT) { - kprintf("pid %d (%s) exit race handled\n", - p->p_pid, p->p_comm); lwpsignal(p, lp, SIGKILL); } -- 2.11.4.GIT