#pragma section-numbers off #pragma disable-camelcase = SDL_CompilerBarrier = Use this function to prevent the compiler from reordering reads and writes to globally visible variables across the call. <> == Syntax == {{{#!highlight cpp void SDL_CompilerBarrier(void) }}} == Code Examples == {{{#!highlight cpp You can add your code example here }}} == Remarks == This function only prevents the compiler from reordering reads and writes, it does not prevent the CPU from reordering reads and writes. However, all of the atomic operations that modify memory are full memory barriers. This function is used in [[SDL_AtomicGet]]() and [[SDL_AtomicGetPtr]](). == Related Functions == .[[SDL_AtomicGet]] .[[SDL_AtomicGetPtr]] ---- [[CategoryAPI]], [[CategoryAtomic]]