Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 557 Bytes

SDL_AtomicGet.mediawiki

File metadata and controls

38 lines (22 loc) · 557 Bytes

Table of Contents

SDL_AtomicGet

Get the value of an atomic variable.

Syntax

<syntaxhighlight lang="c"> int SDL_AtomicGet(SDL_atomic_t *a); </syntaxhighlight>

Function Parameters

a a pointer to an SDL_atomic_t variable

Return Value

Returns the current value of an atomic variable.

Remarks

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

Version

This function is available since SDL 2.0.2.

Related Functions

SDL_AtomicSet

CategoryAPI, CategoryAtomic