Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Feb 2003 13:03:28 -0800 (PST)
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 26034 for review
Message-ID:  <200302272103.h1RL3SWO050244@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=26034

Change 26034 by jhb@jhb_laptop on 2003/02/27 13:02:56

	One char bug.  This is exactly what I thought I had screwed up
	but missed it in my first check.  I thought I had done
	'if (prio == DEAD)' or some such.

Affected files ...

.. //depot/projects/smpng/sys/sys/eventhandler.h#12 edit

Differences ...

==== //depot/projects/smpng/sys/sys/eventhandler.h#12 (text+ko) ====

@@ -72,7 +72,7 @@
 	    ("eventhandler_invoke: runcount overflow"));		\
 	CTR0(KTR_EVH, "eventhandler_invoke(" __STRING(name) ")");	\
 	TAILQ_FOREACH(_ep, &((list)->el_entries), ee_link) {		\
-		if (!(_ep->ee_priority != EHE_DEAD_PRIORITY)) {		\
+		if ((_ep->ee_priority != EHE_DEAD_PRIORITY)) {		\
 			EHL_UNLOCK((list));				\
 			_t = (struct eventhandler_entry_ ## name *)_ep;	\
 			CTR1(KTR_EVH, "eh_invoke: executing %p",	\

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




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