SDL_stack_free - Man Page

Free memory previously allocated with SDL_stack_alloc.

Synopsis

#include <SDL3/SDL_stdinc.h>

#define SDL_stack_free(data) ((void)(data))

Description

If SDL used alloca() to allocate this memory, this macro does nothing (other than insert ((void)(data) so the compiler sees an expression) and the allocated memory will be automatically released when the function that called SDL_stack_alloc() returns. If SDL used SDL_malloc(), it will SDL_free the memory immediately.

Macro Parameters

data

the pointer, from SDL_stack_alloc(), to free.

Thread Safety

It is safe to call this macro from any thread.

Availability

This macro is available since SDL 3.2.0.

See Also

SDL_stack_alloc(3)

Referenced By

SDL_stack_alloc(3).

SDL 3.4.14 Simple Directmedia Layer SDL3 FUNCTIONS