1 /* BEGIN INCLUDE FILE ... ssu_request_tables_list.incl.pl1 */
 2 /* Created:  8 December 1981 by G. Palter */
 3 
 4 /* The list of request tables in use by a subsystem invocation */
 5 
 6 
 7 dcl 1 request_tables_list aligned based (rtl_ptr),
 8       2 header,
 9         3 version fixed binary,                             /* version of this structure */
10         3 n_tables fixed binary,                            /* # of request tables in the list */
11       2 tables (request_tables_list_n_tables refer (request_tables_list.n_tables)),
12         3 table_ptr pointer,                                /* -> this request table */
13         3 flags,
14           4 table_valid bit (1) unaligned,                  /* "1"b => this request table is valid */
15           4 pad bit (35) unaligned,
16         3 pad bit (36);
17 
18 dcl  rtl_ptr pointer;
19 
20 dcl  request_tables_list_n_tables fixed binary;             /* for allocating the above structure */
21 
22 dcl  REQUEST_TABLES_LIST_VERSION_1 fixed binary static options (constant) initial (1);
23 
24 /* END INCLUDE FILE ... ssu_request_tables_list.incl.pl1 */