SDL_DestroyProcess - Man Page

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)

Referenced By

SDL_CreateProcess(3), SDL_CreateProcessWithProperties(3), SDL_KillProcess(3), SDL_ReadProcess(3), SDL_WaitProcess(3).

SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS