1 /*        BEGIN INCLUDE FILE ... od355_trace.incl.pl1 */
 2 
 3 /* *      This include file describes the format of the messages
 4    *      used by online_355_dump_ when deciphering the
 5    *      355 trace table
 6    *
 7    *      written by Robert Coren 04/01/75
 8 */
 9 
10 dcl  od355_trace$ fixed bin ext static;
11 
12 dcl  od355_trace$modtab (6) bit(18) aligned ext static;     /* list of offsets of per-module lists of message offsets */
13 
14 dcl  message_offsets (1) bit(18) aligned based;             /* list of message offsets (per module) */
15 
16 dcl  modp ptr;
17 dcl  tracep ptr;
18 
19 dcl  1 trace_message aligned based,                         /* format of an individual trace message */
20           2 length fixed bin(8) unaligned,
21           2 message char(0 refer (trace_message.length)) unaligned;
22 
23 /*        END INCLUDE FILE ... od355_trace.incl.pl1 */