-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathassert.3
More file actions
183 lines (183 loc) · 5.56 KB
/
Copy pathassert.3
File metadata and controls
183 lines (183 loc) · 5.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
.\" 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.
.\" 3. Neither the name of the University nor the names of its contributors
.\" 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.
.\"
.Dd May 17, 2026
.Dt ASSERT 3
.Os
.Sh NAME
.Nm assert ,
.Nm static_assert
.Nd expression verification macro
.Sh SYNOPSIS
.In assert.h
.Fn assert expression
.Fn static_assert expression
.Fn static_assert expression message
.Sh DESCRIPTION
The
.Fn assert
macro tests the given scalar
.Ar expression ,
and if it is false,
a diagnostic message is written to
.Dv stderr
and the function
.Xr abort 3
is called, effectively terminating the calling process.
.Pp
If
.Ar expression
is true,
the
.Fn assert
macro does nothing.
.Pp
The
.Fn assert
macro accepts a variable number of arguments.
In all compilation modes,
.Fn assert
is defined as a macro with an ellipsis parameter, consistent with the
C23 standard.
This allows expressions containing commas to be passed directly without
requiring an extra pair of enclosing parentheses.
Only a single scalar expression is evaluated.
Supplying multiple arguments is prohibited, and hence top-level comma
operators.
In particular, this guards against accidentally writing
.Fn assert
in the style of
.Fn static_assert ,
which would otherwise silently evaluate as always true via the comma
operator.
The
.Fn assert
macro
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 ) .
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
until the end of the unit or another include of
.In assert.h .
.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.
.Pp
In pre-C23 compilation modes
.Fn static_assert
is implemented as a macro and expands to
.Fn _Static_assert ,
and, contrarily to
.Fn assert ,
makes assertions at compile-time.
Once the constraint is violated, the compiler produces a diagnostic
message including the string literal message, if provided.
The initial form of the
.Fn _Static_assert
containing a string literal message was introduced in C11 standard, and
the other form with no string literal conforms to C23 standard.
.Pp
In C23 and later,
.Fn static_assert
is a language keyword, and
.Fn _Static_assert
is provided as an obsolescent alternative spelling that should not be
used for new code and development.
.Sh EXAMPLES
The assertion:
.Dl "assert(1 == 0);"
generates a diagnostic message similar to the following:
.Dl "Assertion failed: (1 == 0), function main, file main.c, line 100."
.Pp
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.
.Pp
The following example asserts that the
.Va iov_len
member of the compound literal, reflecting the value of
.Va len ,
is non-zero.
The compound literal contains a comma that is not protected by
parentheses, which the variadic
.Fn assert
macro handles transparently:
.Dl assert((struct iovec){ buf, len }.iov_len);
.Pp
The following asserts that the size of the
.Vt S
structure is 16.
Otherwise, it produces a diagnostic message which points at the
constraint and includes the provided string literal:
.Dl "static_assert(sizeof(struct S) == 16, ""size mismatch"");"
If none is provided, it only points at the constraint.
.Sh SEE ALSO
.Xr abort2 2 ,
.Xr abort 3
.Sh STANDARDS
The
.Fn assert
macro conforms to
.St -isoC-2023 .
.Pp
The
.Fn static_assert
conforms to
.St -isoC-2011 ,
wherein defined as a macro, and
.St -isoC-2023 ,
as a language keyword, depending on the compilation mode.
.Sh HISTORY
The
.Nm
macro first appeared in
.At v7 .
Starting with
.Fx 15.2 ,
it accepts a variadic argument list, allowing expressions
containing commas, such as compound literals, to be passed
without requiring extra enclosing parentheses.
This conforms to
.St -isoC-2023 ,
but made available in all compilation modes.