Function SDL_DestroyMutex

pub unsafe extern "C" fn SDL_DestroyMutex(mutex: *mut SDL_Mutex)
Available on crate feature dep_sdl3 only.
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.

§Parameters

  • mutex: the mutex to destroy.

§Availability

This function is available since SDL 3.2.0.

§See also