From 170c410d35895e16478868ee56a1be554f19ef45 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 27 Apr 2023 19:13:35 -0700 Subject: [PATCH] Remove old mutex macros --- include/SDL3/SDL_mutex.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/SDL3/SDL_mutex.h b/include/SDL3/SDL_mutex.h index 1805ed1e91..a25d8b8396 100644 --- a/include/SDL3/SDL_mutex.h +++ b/include/SDL3/SDL_mutex.h @@ -172,7 +172,6 @@ extern DECLSPEC SDL_mutex *SDLCALL SDL_CreateMutex(void); * \since This function is available since SDL 3.0.0. */ extern DECLSPEC int SDLCALL SDL_LockMutex(SDL_mutex * mutex) SDL_ACQUIRE(mutex); -#define SDL_mutexP(m) SDL_LockMutex(m) /** * Try to lock a mutex without blocking. @@ -213,7 +212,6 @@ extern DECLSPEC int SDLCALL SDL_TryLockMutex(SDL_mutex * mutex) SDL_TRY_ACQUIRE( * \since This function is available since SDL 3.0.0. */ extern DECLSPEC int SDLCALL SDL_UnlockMutex(SDL_mutex * mutex) SDL_RELEASE(mutex); -#define SDL_mutexV(m) SDL_UnlockMutex(m) /** * Destroy a mutex created with SDL_CreateMutex().