SysProcWait
- Function
- October 8, 2025
Table of Contents
SysProcWait
SysProcWait
Description
Block the parent process and wait for provided child process to finish execution.
Parameters
Name | Direction | Description |
---|---|---|
proc | in | Child process handle to wait for. |
Success
Return
Failure
Abort with log message.
Usage example (Cross-references)
- In
Proc.c:228
:
}
void SysProcWait(SysProc *proc) {
if (!proc) {
LOG_FATAL("Invalid argument");