1 /* BEGIN INCLUDE FILE process_status_return.incl.pl1 */
 2 
 3 /* T. Casey, May 1978 */
 4 
 5 dcl 1 process_status_return aligned,                        /* structure returned by hphcs_$process_status */
 6     2 target_proc bit (36),                                 /* Input process id. */
 7     2 total_page_faults fixed bin (35),                     /* Total page faults in process. */
 8     2 aptptr ptr,                                           /* ptr to user APTE */
 9     2 up_exec fixed bin,                                    /* execution state. 1=run, 4=block */
10     2 up_mp fixed bin,                                      /* multiprogramming state. */
11     2 up_block fixed bin (71),                              /* time of last block */
12     2 up_cpu fixed bin (71),                                /* CPU usage in microseconds */
13     2 up_page fixed bin (71),                               /* memory usage in Frankstons */
14     2 virtual_cpu fixed bin (71),                           /* Process virtual CPU time */
15     2 extra2 fixed bin (71);
16 
17 /* END INCLUDE FILE process_status_return.incl.pl1 */