1 /* BEGIN INCLUDE FILE process_usage.incl.pl1 WRITTEN 09/17/76 BY Richard Bratt */
 2 
 3 declare
 4          process_usage_pointer pointer,
 5          1 process_usage based (process_usage_pointer),
 6          2 number_wanted fixed bin,                         /* max number of entries to be returned */
 7          2 number_can_return fixed bin,                     /* the number of entries currently returnable */
 8          2 cpu_time fixed bin (71),
 9          2 paging_measure fixed bin (71),
10          2 page_faults fixed bin (34),
11          2 pd_faults fixed bin (34),
12          2 virtual_cpu_time fixed bin (71),
13          2 segment_faults fixed bin (34),
14          2 bounds_faults fixed bin (34),
15          2 vtoc_reads fixed bin (34),
16          2 vtoc_writes fixed bin (34);
17 
18 /* END INCLUDE FILE process_usage.incl.pl1      */