WIFCONTINUEDstatus
WIFCONTINUEDstatus refers to the interpretation of a status value produced by wait-related system calls in POSIX-compliant operating systems. It describes the condition where a child process has resumed execution after being stopped, typically by a SIGCONT signal. The WIFCONTINUED macro tests a wait status to determine if such a continuation has occurred. This macro is part of the family of status-check macros used with wait, waitpid, and similar functions, alongside WIFEXITED, WIFSIGNALED, and WIFSTOPPED.
To detect continued processes, a program must call waitpid (or wait) with the WCONTINUED option enabled. If
Relation to other status checks
WIFCONTINUED is one of several macros used to decode child status values. WIFSTOPPED indicates a child is
WIFCONTINUED and the WCONTINUED option are defined in POSIX.1 and are widely supported on Linux, BSD, and