SysDestroyProcess

Table of Contents

SysDestroyProcess

Description

Clean up process information and free resources. Process must be completed or terminated before calling this.

Parameters

NameDirectionDescription
proc_infoinProcess information object to clean up.

Success

Resources freed.

Failure

Function cannot fail - safe to call with NULL.

Usage example (Cross-references)

    }
    
    void SysDestroyProcess(SysProcInfo* proc_info) {
    if (!proc_info) {
    return;

Share :

Related Posts

SysTerminateProcess

SysTerminateProcess Description Terminate a running process forcefully.

Read More

SysGetProcessExitCode

SysGetProcessExitCode Description Get the exit code of a completed process.

Read More

SysMutexDestroy

SysMutexDestroy Description Destroy the provided mutex object. Once a mutex is destroyed, all resources held by it will be freed. Using it after this cal is UB.

Read More