Changed the name of SDL_mutexP() SDL_mutexV()
This commit is contained in:
parent
0707530b35
commit
c6388c87c1
17 changed files with 51 additions and 51 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue