table of contents
other versions
SDL_AtomicUnlock(3) | SDL3 FUNCTIONS | SDL_AtomicUnlock(3) |
NAME¶
SDL_AtomicUnlock - Unlock a spin lock by setting it to 0.
SYNOPSIS¶
#include "SDL3/SDL.h"
void SDL_AtomicUnlock(SDL_SpinLock *lock);
DESCRIPTION¶
Always returns immediately. Please note that spinlocks are dangerous if you don't know what you're doing. Please be careful using any sort of spinlock!
FUNCTION PARAMETERS¶
- lock
- a pointer to a lock variable
AVAILABILITY¶
This function is available since SDL 3.0.0.
SEE ALSO¶
SDL_AtomicLock(3), SDL_AtomicTryLock(3)
SDL 3.0.0 | SDL |