Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 04 Sep 2002 09:49:18 -0700
From:      Ross Finlayson <finlayson@live.com>
To:        freebsd-bugs@freebsd.org
Subject:   named crash
Message-ID:  <4.3.1.1.20020904094508.00b9d340@laptop-localhost>

next in thread | raw e-mail | index | archive | help
Yesterday I saw "named" crash, with the following error log messages:

Sep 3 23:54:34 ns named[171]: 
/usr/src/usr.sbin/named/../../contrib/bind/bin/named/ns_main.c:559: 
INSIST(errno == EINTR): Invalid argument failed.
Sep 3 23:54:35 ns named[171]: 
/usr/src/usr.sbin/named/../../contrib/bind/bin/named/ns_main.c:559: 
INSIST(errno == EINTR): Invalid argument failed.
Sep 3 23:54:58 ns /kernel: pid 171 (named), uid 0: exited on signal 6 (core 
dumped)

Version information:
	named 8.3.3-REL Sun Aug 25 17:17:35 PDT 2002
	FreeBSD 4.6-STABLE: Sun Sep 1 00:29:54 PDT 2002

The error messages occurred in the main loop of "named":

while (!needs_exit) {
	evEvent event;

	ns_debug(ns_log_default, 15, "main loop");
	if (needs != 0)
		handle_needs();
	else if (evGetNext(ev, &event, EV_WAIT) != -1)
		INSIST_ERR(evDispatch(ev, event) != -1);
	else
		INSIST_ERR(errno == EINTR);
}

Is this a known problem?

	Ross.



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4.3.1.1.20020904094508.00b9d340>