Lines Matching +full:isoc +full:- +full:in
4 .\" Redistribution and use in source and binary forms, with or without
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
42 .Nd type-generic atomic operations
96 provides type-generic macros for atomic operations.
98 shared variables between threads that in most cases may be modified
104 These variables are not type-compatible with their non-atomic
226 The atomic operations described previously are implemented in such a way
228 re-order any nearby memory operations across the atomic operation.
232 version that allows the re-ordering to be configured.
239 .Bl -tag -width memory_order_relaxed
262 they must be implemented type-generically and must often use special
275 .St -isoC-2011
276 allows the atomic variables to be modified directly using built-in
279 To prevent unintended non-atomic access to these variables, this header
280 file places the atomic variable in a structure when using an older
283 When using GCC on architectures on which it lacks support for built-in
286 These fallback routines are only implemented for 32-bits and 64-bits
293 .St -isoC-2011 .
295 These macros appeared in