@@ -194,9 +194,7 @@ enum gfx_thumbnail_flags
194194 * and the main thread (a number of plain transitions during menu
195195 * processing). retro_atomic_int_t backs the field with an
196196 * atomic-typed integer that is safe to read/write through the
197- * retro_atomic_*_int API on every supported backend (C11
198- * stdatomic, C++11 std::atomic, GCC __atomic_*, MSVC
199- * Interlocked, Apple OSAtomic, GCC __sync_*, volatile fallback).
197+ * retro_atomic_*_int API on every supported backend.
200198 *
201199 * Same size and alignment as plain int on every backend; struct
202200 * layout is unchanged. The cost of the acquire/release barriers
@@ -219,7 +217,7 @@ typedef struct
219217 * memset(t, 0, sizeof(*t)) of a struct containing this type
220218 * warns under CXX_BUILD's C++ compile (the struct is no longer
221219 * trivially-copyable per C++11), even though the resulting
222- * bytes are identical. RetroArch's CXX_BUILD mode (Apple, etc.)
220+ * bytes are identical. RetroArch's CXX_BUILD mode
223221 * compiles every .c file as C++, so this helper is required
224222 * for clean builds, not just style.
225223 *
0 commit comments