Scroll to navigation

SDL_TLSSet(3) SDL3 FUNCTIONS SDL_TLSSet(3)

NAME

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

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_TLSSet(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_TLSSet ().

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_TLSCreate(3), SDL_TLSGet(3)

SDL 3.0.0 SDL