table of contents
other versions
- trixie 3.2.10+ds-1
 - testing 3.2.26+ds-1
 - unstable 3.2.26+ds-2
 - experimental 3.3.2+git20251103~dc5b136+ds-1
 
| SDL_DestroyProcess(3) | SDL3 FUNCTIONS | SDL_DestroyProcess(3) | 
NAME¶
SDL_DestroyProcess - Destroy a previously created process object.
SYNOPSIS¶
#include <SDL3/SDL_process.h>
void SDL_DestroyProcess(SDL_Process *process);
DESCRIPTION¶
Note that this does not stop the process, just destroys the SDL object used to track it. If you want to stop the process you should use SDL_KillProcess().
FUNCTION PARAMETERS¶
- process
 - The process object to destroy.
 
THREAD SAFETY¶
This function is not thread safe.
AVAILABILITY¶
This function is available since SDL 3.2.0.
SEE ALSO¶
SDL_CreateProcess(3), SDL_CreateProcessWithProperties(3), SDL_KillProcess(3)
| SDL 3.2.26 | Simple Directmedia Layer |