mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-06-01 01:17:40 +00:00
Rename SDL semaphore and condition variable functions to match SDL 3.0 naming convention
Fixes https://github.com/libsdl-org/SDL/issues/7642
This commit is contained in:
parent
170c410d35
commit
61c0c009ab
45 changed files with 458 additions and 362 deletions
|
@ -2538,3 +2538,58 @@ typedef SDL_atomic_t, SDL_AtomicInt;
|
|||
@@
|
||||
- SDL_atomic_t
|
||||
+ SDL_AtomicInt
|
||||
@@
|
||||
@@
|
||||
- SDL_SemWait
|
||||
+ SDL_WaitSemaphore
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_SemTryWait
|
||||
+ SDL_TryWaitSemaphore
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_SemWaitTimeout
|
||||
+ SDL_WaitSemaphoreTimeout
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_SemPost
|
||||
+ SDL_PostSemaphore
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_SemValue
|
||||
+ SDL_GetSemaphoreValue
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_CreateCond
|
||||
+ SDL_CreateCondition
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_DestroyCond
|
||||
+ SDL_DestroyCondition
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_CondSignal
|
||||
+ SDL_SignalCondition
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_CondBroadcast
|
||||
+ SDL_BroadcastCondition
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_CondWait
|
||||
+ SDL_WaitCondition
|
||||
(...)
|
||||
@@
|
||||
@@
|
||||
- SDL_CondWaitTimeout
|
||||
+ SDL_WaitConditionTimeout
|
||||
(...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue