Subject: Re: switch to two-argument KASSERT?
To: Matt Thomas <matt@3am-software.com>
From: Bill Sommerfeld <sommerfeld@netbsd.org>
List: tech-kern
Date: 01/14/2004 09:29:27
> Simply repeating the failed condition is too little too late.

I've seen some folks use a 4-argument assert:
	
	MUMBLEASSERT("string", x, ==, y)

which allows both the condition to be tested and the failed values to
be printed..

							- Bill