Scroll to navigation

SDL_SetTLS(3) SDL3 FUNCTIONS SDL_SetTLS(3)

NAME

SDL_SetTLS - Set the current thread's value associated with a thread local storage ID.

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_SetTLS(SDL_TLSID id, const void *value, void (SDLCALL *destructor)(void*));

DESCRIPTION

The function prototype for destructor is:

c void destructor(void *value)

where its parameter value is what was passed as value to

SDL_SetTLS ().

FUNCTION PARAMETERS

the thread local storage ID
the value to associate with the ID for the current thread
a function called when the thread exits, to free the value

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_GetTLS(3)

SDL 3.1.0 SDL