CTASSERT -- compile time assertion macro
#include <sys/param.h>
#include <sys/systm.h>
CTASSERT(expression);
The CTASSERT() macro evaluates expression at compile time and causes a
compiler error if it is false.
The CTASSERT() macro is useful for asserting the size or alignment of
important data structures and variables during compilation, which would
otherwise cause the code to fail at run time.
Assert that the size of the uuid structure is 16 bytes.
CTASSERT(sizeof(struct uuid) == 16);
KASSERT(9)
This manual page was written by Hiten M. Pandya <[email protected]>.
FreeBSD 5.2.1 May 15, 2003 FreeBSD 5.2.1 [ Back ] |