mirror of
https://github.com/yawut/SDL.git
synced 2026-09-07 08:36:19 -05:00
Changed the name of SDL_mutexP() SDL_mutexV()
This commit is contained in:
@@ -79,7 +79,7 @@ SDL_DestroyMutex(SDL_mutex * mutex)
|
||||
|
||||
/* Lock the mutex */
|
||||
int
|
||||
SDL_mutexP(SDL_mutex * mutex)
|
||||
SDL_LockMutex(SDL_mutex * mutex)
|
||||
{
|
||||
int retval;
|
||||
#if FAKE_RECURSIVE_MUTEX
|
||||
@@ -165,7 +165,7 @@ SDL_TryLockMutex(SDL_mutex * mutex)
|
||||
}
|
||||
|
||||
int
|
||||
SDL_mutexV(SDL_mutex * mutex)
|
||||
SDL_UnlockMutex(SDL_mutex * mutex)
|
||||
{
|
||||
int retval;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user