SDL Wiki
[ front page | index | search | recent changes | git repo | offline html ]
(This function is part of SDL_mixer, a separate library from SDL.)

MIX_UnlockMixer

Unlock a mixer previously locked by a call to MIX_LockMixer().

Header File

Defined in <SDL3_mixer/SDL_mixer.h>

Syntax

void MIX_UnlockMixer(MIX_Mixer *mixer);

Function Parameters

MIX_Mixer * mixer the mixer to unlock. May be NULL.

Remarks

While locked, the mixer will not be able to mix more audio or change its internal state another thread. Those other threads will block until the mixer is unlocked again.

Under the hood, this function calls SDL_LockMutex(), so all the same rules apply: the lock can be recursive, it must be unlocked the same number of times from the same thread that locked it, etc.

Unlocking a NULL mixer is a safe no-op.

Thread Safety

This call must be paired with a previous MIX_LockMixer call on the same thread.

Version

This function is available since SDL_mixer 3.0.0.

See Also


CategoryAPI, CategoryAPIFunction, CategorySDLMixer


[ edit | delete | history | feedback | raw ]

All wiki content is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
Wiki powered by ghwikipp.