Scroll to navigation

SDL_TLSGet(3) SDL3 FUNCTIONS SDL_TLSGet(3)

NAME

SDL_TLSGet - Get the current thread's value associated with a thread local storage ID.

SYNOPSIS

#include "SDL3/SDL.h"
void * SDL_TLSGet(SDL_TLSID id);

FUNCTION PARAMETERS

the thread local storage ID

RETURN VALUE

Returns the value associated with the ID for the current thread or NULL if no value has been set; call SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_TLSCreate(3), SDL_TLSSet(3)

SDL 3.0.0 SDL