File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ extern "C" {
129
129
*
130
130
* Outside of macros, this has no added value.
131
131
*
132
+ * This macro is async-signal-safe, provided that the condition is.
133
+ *
132
134
* Return: Evaluates to the value of ``!!_x``.
133
135
*/
134
136
#define _c_boolean_expr_ (_x ) _c_internal_boolean_expr_(__COUNTER__, _x)
@@ -164,6 +166,8 @@ extern "C" {
164
166
*
165
167
* Alias for ``__builtin_expect(!!(_x), 1)``.
166
168
*
169
+ * This macro is async-signal-safe, provided that the condition is.
170
+ *
167
171
* Return: The expression ``!!_x`` is evaluated and returned.
168
172
*/
169
173
#define _c_likely_ (_x ) _c_internal_likely_(_x)
@@ -200,6 +204,8 @@ extern "C" {
200
204
*
201
205
* Alias for ``__builtin_expect(!!(_x), 0)``.
202
206
*
207
+ * This macro is async-signal-safe, provided that the condition is.
208
+ *
203
209
* Return: The expression ``!!_x`` is evaluated and returned.
204
210
*/
205
211
#define _c_unlikely_ (_x ) _c_internal_unlikely_(_x)
You can’t perform that action at this time.
0 commit comments