strange log messages

Doug White dwhite at gumbysoft.com
Tue Dec 9 16:50:00 PST 2003


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 at gumbysoft.com          |  www.FreeBSD.org


More information about the freebsd-stable mailing list