1 /* Begin include file ... tape_temp_seg.incl.pl1 2 * 3 * Created by Bill Silver on 01/11/74 4 * This include file defines the temporary segment that is used by the Multics 5 * standard tape DIM. A tape temp segment is created in the user's process 6 * directory each time the user attaches a tape. Note, this include file must be 7 * used with the include files: ios_sdb.incl.pl1, mstd.incl.pl1, 8 * mstr.incl.pl1, and tseg.incl.pl1. 9 */ 10 11 dcl tts_ptr ptr; /* Pointer to tape temp segment. */ 12 13 14 dcl 1 tape_temp_seg based(tts_ptr) aligned, /* Base of segment. */ 15 16 2 sdb like sdb, /* Stream data block. */ 17 18 2 mstd like mstd, /* tape_ data area. */ 19 20 2 tseg like tseg; /* Ring 0 tape communications data. */ 21 22 23 /* End of include file ... tape_temp_seg.incl.pl1 */