Function sdl2_sys::SDL_DestroyMutex

source ·
pub unsafe extern "C" fn SDL_DestroyMutex(mutex: *mut SDL_mutex)
Expand description

Destroy a mutex created with SDL_CreateMutex().

This function must be called on any mutex that is no longer needed. Failure to destroy a mutex will result in a system memory or resource leak. While it is safe to destroy a mutex that is unlocked, it is not safe to attempt to destroy a locked mutex, and may result in undefined behavior depending on the platform.

\param mutex the mutex to destroy

\since This function is available since SDL 2.0.0.

\sa SDL_CreateMutex \sa SDL_LockMutex \sa SDL_TryLockMutex \sa SDL_UnlockMutex