From owner-freebsd-stable@FreeBSD.ORG Tue Dec 9 16:50:00 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B38316A4CE for ; Tue, 9 Dec 2003 16:50:00 -0800 (PST) Received: from carver.gumbysoft.com (carver.gumbysoft.com [66.220.23.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FA6A43D28 for ; Tue, 9 Dec 2003 16:49:59 -0800 (PST) (envelope-from dwhite@gumbysoft.com) Received: by carver.gumbysoft.com (Postfix, from userid 1000) id 8479972DC3; Tue, 9 Dec 2003 16:49:59 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by carver.gumbysoft.com (Postfix) with ESMTP id 7F90672DB8; Tue, 9 Dec 2003 16:49:59 -0800 (PST) Date: Tue, 9 Dec 2003 16:49:59 -0800 (PST) From: Doug White To: jimmie james In-Reply-To: <20031209075004.72395.qmail@web13422.mail.yahoo.com> Message-ID: <20031209164633.N25346@carver.gumbysoft.com> References: <20031209075004.72395.qmail@web13422.mail.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-stable@freebsd.org Subject: Re: strange log messages X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Dec 2003 00:50:00 -0000 On Mon, 8 Dec 2003, jimmie james wrote: > Howdy, > > I just noticed these tonight after a cvsup/build > world/kernel/install world around 2am EST on the 8th > of dec. > > Dec 9 02:14:23 fortytwo /kernel: issignal > Dec 9 02:16:17 fortytwo /kernel: issignal > Dec 9 02:17:50 fortytwo /kernel: issignal This is being generated by this chunk of code from src/sys/kern/kern_sig.c: case (int)SIG_IGN: /* * Masking above should prevent us ever trying * to take action on an ignored signal other * than SIGCONT, unless process is traced. */ if ((prop & SA_CONT) == 0 && (p->p_flag & P_TRACED) == 0) printf("issignal\n"); break; /* == ignore */ So you have a process being traced that is getting ignored signals. I suspect the message is a leftover debugging prinf and should be harmless. You can file a PR to get this removed if you like. -- Doug White | FreeBSD: The Power to Serve dwhite@gumbysoft.com | www.FreeBSD.org