Manpage of 'CTASSERT' on UHLU - BSD System Documentation,
Programming Reference, Manual Pages and Source Code
All manual pages         All RFC pages
Common page
for CTASSERT
Other pages
for CTASSERT
More pages
containing CTASSERT

Section 9 manual page or howto for 'CTASSERT'  

CTASSERT(9)	       FreeBSD Kernel Developer's Manual	   CTASSERT(9)

NAME
     CTASSERT -- compile time assertion macro

SYNOPSIS
     #include <sys/param.h>
     #include <sys/systm.h>

     CTASSERT(expression);

DESCRIPTION
     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.

EXAMPLES
     Assert that the size of the uuid structure is 16 bytes.

	   CTASSERT(sizeof(struct uuid) == 16);

SEE ALSO
     KASSERT(9)

AUTHORS
     This manual page was written by Hiten M. Pandya <hmp@FreeBSD.org>.

FreeBSD 7.2			 May 15, 2003			   FreeBSD 7.2

NAME - SYNOPSIS - DESCRIPTION - EXAMPLES - SEE ALSO - AUTHORS -  
All manual pages         All RFC pages
Common page
for CTASSERT
Other pages
for CTASSERT
More pages
containing CTASSERT
A random manual page         All manual pages        All RFC pages