Man page - sdl_atomicdecref(3)

Packages contains this manual

Manual

SDL_AtomicDecRef

NAME
HEADER FILE
SYNOPSIS
DESCRIPTION
RETURN VALUE
THREAD SAFETY
AVAILABILITY
SEE ALSO

NAME

SDL_AtomicDecRef - Decrement an atomic variable used as a reference count.

HEADER FILE

Defined in SDL3/SDL_atomic.h

SYNOPSIS

#include "SDL3/SDL.h"

#define SDL_AtomicDecRef(a) (SDL_AddAtomicInt(a, -1) == 1)

DESCRIPTION

Note: If you don’t know what this macro is for, you shouldn’t use it!

RETURN VALUE

Returns true if the variable reached zero after decrementing, false otherwise.

THREAD SAFETY

It is safe to call this macro from any thread.

AVAILABILITY

This macro is available since SDL 3.2.0.

SEE ALSO

(3), SDL_AtomicIncRef (3)