BPXYTIMS — Map the response structure for times

                                                      
            BPXYTIMS   ,                                                        
** BPXYTIMS: times syscall structure                                            
**  Used By: TIM                                                                
TIMS                 DSECT ,                                                    
TIMSBEGIN            DS    0F                                                   
TIMSUTIME            DS    F      User CPU time of current process              
*                                 in hundredths of a second.                    
*                                 This includes the TCB and SRB time            
*                                 of the calling process minus the              
*                                 TCB time accumulated while running            
*                                 in the  kernel address space.                 
TIMSSTIME            DS    F      System CPU time of current process            
*                                 in hundredths of a second.                    
*                                 This is the TCB time accumulated              
*                                 while running in the                          
*                                 kernel address space.                         
TIMSCUTIME           DS    F      Sum of user CPU time values (as               
*                                 defined in TIMSUTIME) and child user          
*                                 CPU time values (as defined in                
*                                 TIMSCUTIME) for all waited-for                
*                                 child processes.  Zero if the                 
*                                 current process has no waited-for             
*                                 children.                                     
TIMSCSTIME           DS    F      Sum of system CPU time values (as             
*                                 defined in TIMSSTIME) and child               
*                                 system CPU time values (as defined in         
*                                 TIMSCSTIME) for all waited-for                
*                                 child processes.  Zero if the                 
*                                 current process has no waited-for             
*                                 children.                                     
TIMS#LENGTH          EQU   *-TIMS Length of this structure                      
** BPXYTIMS End