mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-28 15:39:10 +00:00
Updated the atomic API for SDL 3.0 naming conventions
Fixes https://github.com/libsdl-org/SDL/issues/7388
This commit is contained in:
parent
4e60fc9b2b
commit
a2665f54c8
24 changed files with 156 additions and 112 deletions
|
@ -2884,3 +2884,28 @@ expression e1, e2, e3, e4;
|
|||
- SDL_HapticRumbleStop
|
||||
+ SDL_StopHapticRumble
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_AtomicTryLock
|
||||
+ SDL_TryLockSpinlock
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_AtomicLock
|
||||
+ SDL_LockSpinlock
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_AtomicUnlock
|
||||
+ SDL_UnlockSpinlock
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_AtomicCAS
|
||||
+ SDL_AtomicCompareAndSwap
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_AtomicCASPtr
|
||||
+ SDL_AtomicCompareAndSwapPointer
|
||||
(...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue