1994-05-30 19:09:18 +00:00
|
|
|
.\" Copyright (c) 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2014-03-14 03:07:51 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-30 19:09:18 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)assert.3 8.1 (Berkeley) 6/9/93
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-30 19:09:18 +00:00
|
|
|
.\"
|
2018-05-31 14:23:33 +00:00
|
|
|
.Dd May 31, 2018
|
1994-05-30 19:09:18 +00:00
|
|
|
.Dt ASSERT 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm assert
|
|
|
|
.Nd expression verification macro
|
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In assert.h
|
1994-05-30 19:09:18 +00:00
|
|
|
.Fn assert expression
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn assert
|
|
|
|
macro tests the given
|
|
|
|
.Ar expression
|
|
|
|
and if it is false,
|
|
|
|
the calling process is terminated.
|
2018-05-31 14:23:33 +00:00
|
|
|
A diagnostic message is written to
|
2002-12-04 18:57:46 +00:00
|
|
|
.Dv stderr
|
1994-05-30 19:09:18 +00:00
|
|
|
and the function
|
1996-06-12 23:46:47 +00:00
|
|
|
.Xr abort 3
|
1999-04-30 13:12:44 +00:00
|
|
|
is called, effectively terminating the program.
|
1994-05-30 19:09:18 +00:00
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Ar expression
|
|
|
|
is true,
|
|
|
|
the
|
|
|
|
.Fn assert
|
|
|
|
macro does nothing.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn assert
|
|
|
|
macro
|
1999-01-26 16:59:02 +00:00
|
|
|
may be removed at compile time by defining
|
|
|
|
.Dv NDEBUG
|
|
|
|
as a macro
|
|
|
|
(e.g., by using the
|
|
|
|
.Xr cc 1
|
|
|
|
option
|
|
|
|
.Fl D Ns Dv NDEBUG ) .
|
2018-01-01 18:59:11 +00:00
|
|
|
Unlike most other include files,
|
|
|
|
.In assert.h
|
|
|
|
may be included multiple times.
|
|
|
|
Each time whether or not
|
|
|
|
.Dv NDEBUG
|
|
|
|
is defined determines the behavior of assert from that point forward
|
2018-01-01 19:04:40 +00:00
|
|
|
until the end of the unit or another include of
|
2018-01-01 18:59:11 +00:00
|
|
|
.In assert.h .
|
2018-05-31 14:23:33 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn assert
|
|
|
|
macro should only be used for ensuring the developer's expectations
|
|
|
|
hold true.
|
|
|
|
It is not appropriate for regular run-time error detection.
|
2001-10-27 20:11:10 +00:00
|
|
|
.Sh EXAMPLES
|
|
|
|
The assertion:
|
2001-11-20 15:17:51 +00:00
|
|
|
.Dl "assert(1 == 0);"
|
2001-10-27 20:11:10 +00:00
|
|
|
generates a diagnostic message similar to the following:
|
2018-05-31 14:23:33 +00:00
|
|
|
.Dl "Assertion failed: (1 == 0), function main, file main.c, line 100."
|
2001-11-20 15:17:51 +00:00
|
|
|
.Pp
|
2018-05-31 14:23:33 +00:00
|
|
|
The following assert tries to assert there was no partial read:
|
|
|
|
.Dl "assert(read(fd, buf, nbytes) == nbytes);"
|
|
|
|
However, there are two problems.
|
|
|
|
First, it checks for normal conditions, rather than conditions that
|
|
|
|
indicate a bug.
|
|
|
|
Second, the code will disappear if
|
|
|
|
.Dv NDEBUG
|
|
|
|
is defined, changing the semantics of the program.
|
1998-01-02 19:22:52 +00:00
|
|
|
.Sh SEE ALSO
|
2018-05-29 01:16:00 +00:00
|
|
|
.Xr abort2 2 ,
|
1998-01-02 19:22:52 +00:00
|
|
|
.Xr abort 3
|
2001-10-24 18:14:51 +00:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
|
|
|
.Fn assert
|
2001-10-27 20:11:10 +00:00
|
|
|
macro conforms to
|
2001-10-24 18:14:51 +00:00
|
|
|
.St -isoC-99 .
|
1994-05-30 19:09:18 +00:00
|
|
|
.Sh HISTORY
|
1999-04-30 13:12:44 +00:00
|
|
|
An
|
2000-11-20 18:41:33 +00:00
|
|
|
.Nm
|
1994-05-30 19:09:18 +00:00
|
|
|
macro appeared in
|
2018-01-01 18:55:13 +00:00
|
|
|
.At v7 .
|