SDL Wiki
[ front page | index | search | recent changes | git repo | offline html ]

SDL_stack_free

Free memory previously allocated with SDL_stack_alloc.

Header File

Defined in <SDL3/SDL_stdinc.h>

Syntax

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

Macro Parameters

data the pointer, from SDL_stack_alloc(), to free.

Remarks

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.

Thread Safety

It is safe to call this macro from any thread.

Version

This macro is available since SDL 3.2.0.

See Also


CategoryAPI, CategoryAPIMacro, CategoryStdinc


[ edit | delete | history | feedback | raw ]

All wiki content is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
Wiki powered by ghwikipp.