1 /* BEGIN include file bootload_post_area.incl.pl1 */
 2 
 3 /* Area used for posting completion of disk i/o for bootload Multics
 4 operations (save, restore and pack copy). */
 5 
 6 /* format: style4,indattr,ifthenstmt,ifthen,idind33,^indcomtxt */
 7 
 8 dcl  bootload_disk_post_seg$          aligned ext;
 9 
10 dcl  1 disk_buffer_post               aligned based (disk_buffer_post_ptr),
11        2 buffer_coreadd               fixed bin (26),
12        2 disk_complete                bit (1),              /* disk i/o complete */
13        2 disk_error_code              fixed bin (35);
14 
15 dcl  disk_buffer_post_ptr             ptr;
16 dcl  1 disk_post_area                 aligned based (disk_post_area_ptr),
17        2 number                       fixed bin,
18        2 posted                       (0 refer (disk_post_area.number)) aligned like disk_buffer_post;
19 dcl  disk_post_area_ptr               ptr;
20 
21 /* END include file bootload_post_area.incl.pl1 */