Date: Tue, 9 Dec 2003 16:49:59 -0800 (PST) From: Doug White <dwhite@gumbysoft.com> To: jimmie james <h2g2_jimmiejaz@yahoo.com> Cc: freebsd-stable@freebsd.org Subject: Re: strange log messages Message-ID: <20031209164633.N25346@carver.gumbysoft.com> In-Reply-To: <20031209075004.72395.qmail@web13422.mail.yahoo.com> References: <20031209075004.72395.qmail@web13422.mail.yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20031209164633.N25346>