# CategoryAtomic Atomic operations. IMPORTANT: If you are not an expert in concurrent lockless programming, you should not be using any functions in this file. You should be protecting your data structures with full mutexes instead. ***Seriously, here be dragons!*** You can find out a little more about lockless programming and the subtle issues that can arise here: https://learn.microsoft.com/en-us/windows/win32/dxtecharts/lockless-programming There's also lots of good information here: - https://www.1024cores.net/home/lock-free-algorithms - https://preshing.com/ These operations may or may not actually be implemented using processor specific atomic operations. When possible they are implemented as true processor specific atomic operations. When that is not possible the are implemented using locks that *do* use the available atomic operations. All of the atomic operations that modify memory are full memory barriers. ## Functions - [SDL_AtomicAdd](SDL_AtomicAdd) - [SDL_AtomicCompareAndSwap](SDL_AtomicCompareAndSwap) - [SDL_AtomicCompareAndSwapPointer](SDL_AtomicCompareAndSwapPointer) - [SDL_AtomicGet](SDL_AtomicGet) - [SDL_AtomicGetPtr](SDL_AtomicGetPtr) - [SDL_AtomicSet](SDL_AtomicSet) - [SDL_AtomicSetPtr](SDL_AtomicSetPtr) - [SDL_LockSpinlock](SDL_LockSpinlock) - [SDL_MemoryBarrierAcquireFunction](SDL_MemoryBarrierAcquireFunction) - [SDL_MemoryBarrierReleaseFunction](SDL_MemoryBarrierReleaseFunction) - [SDL_TryLockSpinlock](SDL_TryLockSpinlock) - [SDL_UnlockSpinlock](SDL_UnlockSpinlock) ## Datatypes - [SDL_SpinLock](SDL_SpinLock) ## Structs - [SDL_AtomicInt](SDL_AtomicInt) ## Enums - (none.) ## Macros - [SDL_AtomicDecRef](SDL_AtomicDecRef) - [SDL_AtomicIncRef](SDL_AtomicIncRef) - [SDL_CompilerBarrier](SDL_CompilerBarrier) - [SDL_CPUPauseInstruction](SDL_CPUPauseInstruction) ---- [CategoryAPICategory](CategoryAPICategory)