1 /* BEGIN INCLUDE FILE...fnp_queue_entry.incl.pl1 */
 2 
 3 
 4 
 5 /****^  HISTORY COMMENTS:
 6   1) change(86-04-23,Coren), approve(86-04-23,MCR7300),
 7      audit(86-05-19,Beattie), install(86-07-08,MR12.0-1089):
 8      To increase the size of cmd_data to allow for 8-word echo-break tables.
 9                                                    END HISTORY COMMENTS */
10 
11 
12 /* This include file defines the delay queue entries used by dn355 when an outbound
13    mailbox is unavailable */
14 
15 /* Extracted from dn355.pl1 by Robert Coren, September 1984 */
16 
17 dcl  fnp_qptr pointer;
18 
19 dcl  1 fnp_queue_entry based (fnp_qptr) aligned,            /* definition of delay queue entry */
20        2 opcode fixed bin (8) unal,                         /* opcode */
21        2 cmd_count fixed bin (8) unal,                      /* count of valid command data */
22        2 pcb_offset bit (18) unal,                          /* PCB of channel */
23        2 cmd_data bit (8 * 36) unal,                        /* 8 words of command data */
24        2 next fixed bin;                                    /* offset of next queue entry */
25 
26 /* END INCLUDE FILE...fnp_queue_entry.incl.pl1 */