C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
_spawn... Constants
                                             Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
  Constant:  _P_OVERLAY, _P_WAIT
 
  Include:   <process.h>
 
  Context:   _spawn family of functions
 
  Summary:   The <modeflag> argument determines the action taken by the
             parent process before and during spawn.
 
     The following values for <modeflag> are possible:
 
     Constant       Meaning
 
     _P_OVERLAY     Overlays parent process with child, destroying the
                    parent (same effect as exec calls).
 
     _P_WAIT        Suspends parent process until execution of child
                    process is complete (synchronous spawn).
                                    -♦-