1 /* BEGIN INCLUDE FILE trace_types.incl.pl1  --  Last modified Jan 1982 */
 2 
 3      dcl     (page_fault_type       init (0),
 4              seg_fault_start        init (2),
 5              seg_fault_end          init (3),
 6              linkage_fault_start    init (4),
 7              linkage_fault_end      init (5),
 8              boundfault_start       init (6),
 9              boundfault_end         init (7),
10              signaller_type         init (8),
11              restart_fault_type     init (9),
12              reschedule_type        init (10),
13              marker_type            init (11),
14              interrupt_type         init (12),
15              extended_page_fault_type init (15)) fixed bin int static options (constant);
16 
17 
18 /* END INCLUDE FILE trace_types.incl.pl1 */