SysProcDestroy
- Function
- October 8, 2025
Table of Contents
SysProcDestroy
SysProcDestroy
Description
Terminate the child process and then destroy given SysProc
structure.
Parameters
Name | Direction | Description |
---|---|---|
proc | in | Child process handle to terminate and destroy. |
Success
Return
Failure
Abort with log message.
Usage example (Cross-references)
- In
Proc.c:388
:
void SysProcDestroy(SysProc *proc) {
if (!proc) {
LOG_FATAL("Invalid argument");
- In
SubProcComm.c:25
:
// finally terminate
SysProcDestroy(proc);
}