Documentation

SysAbort

SysAbort Description Custom abort function that can be redirected for testing purposes. By default, this calls the standard abort() function. If a callback is set via SysSetAbortCallback, it calls the callback instead.

Read More

SysGetCurrentProcessId

SysGetCurrentProcessId Description Platform independent method to get current process Id.

Read More

SysGetDirContents

SysGetDirContents Description Read directory contents into a vector. Current contents of the vector will be cleared out.

Read More

SysGetFileSize

SysGetFileSize Description Get size of file without opening it.

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

SysProcDestroy

SysProcDestroy Description Terminate the child process and then destroy given SysProc structure.

Read More

SysProcGetExitCode

SysProcGetExitCode Description Get exit code of given child process.

Read More

SysProcGetId

SysProcGetId Description Get the OS-specific process ID of a child process.

Read More

SysProcGetStatus

SysProcGetStatus Description Check if a child process is still running.

Read More

SysProcReadFromStderr

SysProcReadFromStderr Description Perform a blocking read from stderr of child process to provided buffer.

Read More