Scroll to navigation

SDL_GetTLS(3) SDL3 FUNCTIONS SDL_GetTLS(3)

NAME

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

SYNOPSIS

#include "SDL3/SDL.h"
void * SDL_GetTLS(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_SetTLS(3)

SDL 3.1.0 SDL