Date: Tue, 2 Apr 2002 11:06:54 -0800 (PST) From: Matthew Dillon <dillon@apollo.backplane.com> To: hackers@FreeBSD.ORG, Jeff Roberson <jroberson@chesapeake.net> Subject: Re: adding allocation failure detection / automatic panic Message-ID: <200204021906.g32J6sQ17077@apollo.backplane.com> References: <20020327193305.D16840-100000@mail.chesapeake.net> <200204021905.g32J5Oa17043@apollo.backplane.com>
next in thread | previous in thread | raw e-mail | index | archive | help
(note: this kassert is wrong): :+ KASSERT(item == NULL, ("zitems unexpectedly NULL")); should be: :+ KASSERT(item != NULL, ("zitems unexpectedly NULL")); -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200204021906.g32J6sQ17077>