BPXYWAST — Map the wait status word

                                                      
            BPXYWAST   ,                                                        
** BPXYWAST: Wait status word                                                   
**  Used By: EXI MPC WAT                                                        
WAST                 DSECT ,                                                    
                     DS    XL2    Reserved - set to zeros                       
WASTEXITSTATUS       DS    0XL2   Exit Status value passed on the               
*                                 BPX1EXI or BPX1MPC system calls               
WASTEXITCODE         DS    0XL1   Exit return code for ending process           
WASTSIGSTOP          DS    XL1    Signal that stopped process                   
WASTSIGTERM          DS    0XL1   Signal that terminated process                
WASTSTOPFLAG         DS    XL1    Special flag value that qualifies the         
*                                 reason for the process being stopped          
*                                 or if the process is continued                
*                                 from stop, the value would be                 
*                                 set to WastStopFlagContinued                  
* * WASTSTOPFLAG Values * * * * * * * * * * * * * * * * * * * * * * *           
WASTDUMP             EQU   X'80'  Bit 0 of WASTSTOPFLAG on, a core dump         
*                                 was taken when the process terminated         
WASTSTOPFLAGSIG      EQU   X'7F'  Process stopped for a signal                  
WASTSTOPFLAGFORK     EQU   X'7E'  Process stopped for a fork                    
WASTSTOPFLAGEXEC     EQU   X'7D'  Process stopped for an exec                   
WASTSTOPFLAGLOCALFORK EQU  X'7B'  Process stopped for a local fork              
WASTSTOPFLAGEXTENDED EQU   X'7A'  Process stopped for extended event            
*                                                                               
WASTSTOPFLAGCONTINUED EQU  X'79'  Process continued from stop                   
WASTSTOPFLAGLOAD     EQU   X'78'  Process stopped for a loadHFS                 
WASTSTOPFLAGDELETE   EQU   X'77'  Process stopped for a deleteHFS               
WAST#LENGTH          EQU   *-WAST Length of this structure                      
** BPXYWAST End