SDL_AtomicIncRef - Man Page

Increment an atomic variable used as a reference count.

Header File

Defined in SDL3/SDL_atomic.h

Synopsis

#include "SDL3/SDL.h"

#define SDL_AtomicIncRef(a)    SDL_AddAtomicInt(a, 1)

Description

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

Return Value

Returns the previous value of the atomic variable.

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_AtomicDecRef(3)

Referenced By

SDL_AddAtomicInt(3), SDL_AtomicDecRef(3).

SDL 3.2.2 Simple Directmedia Layer SDL3 FUNCTIONS