/* BEGIN INCLUDE FILE ... prt_sdb.incl.pl1 */ /* Note: there is a corresponding prt_sdb.incl.alm */ /* Created 10/28/74 by Noel I. Morris */ /* Modified 3/15/77 by Noel I. Morris */ /* Modified 1/25/78 by J. C. Whitmore to merge prtdim and spooling_dim versions */ /* Modified: 27 November 1981 by G. Palter to add reload_vfc_train_after_special flag */ /* Modified: 16 August 1983 by E. N. Kittlitz for new printer dim */ dcl sdb_ptr ptr; /* pointer to stream data block */ dcl 1 sdb aligned based (sdb_ptr), /* printer stream data block */ 2 outer_module_name char (32) aligned, 2 device_name_list_ptr pointer, 2 device_name, 3 next_device_ptr pointer, 3 name_size fixed bin (17), 3 name char (32) aligned, 2 ev_list aligned, /* Event list for ipc_ */ 3 count fixed bin (17), /* Event count = Always one */ 3 evchan fixed bin (71), /* Event channel name */ 2 stream_name char (32), /* stream name of this attachment */ 2 areap ptr, /* pointer to system free area */ 2 info like prt_info aligned, /* printer info */ 2 conv_info like pci aligned, /* conversion info */ 2 chars_printed fixed bin (35), /* input chars processed since "reset" */ 2 stop_every fixed bin, /* non-zero to stop after number of pages */ 2 stop_counter fixed bin, /* page stop counter */ 2 mode, /* additional modes */ (3 single_page bit (1), /* "1"b to stop after each page */ 3 noprint bit (1), /* "1"b to suppress printing */ 3 pad bit (34)) unal, 2 rcp_id bit (36), /* RCP attachment ID */ 2 wsegp ptr, /* pointer to IOI working segment */ 2 running bit (1), /* "1"b if channel running */ 2 bgin fixed bin (18), /* index to oldest print line */ 2 stop fixed bin (18), /* index to next print line */ 2 prev fixed bin (18), /* index to previous print line */ 2 wait_flag bit (1) aligned, /* non-zero if waiting for special */ 2 marker_count fixed bin, /* counter for marker status insertion */ 2 paper_low bit (1) aligned, /* "1"b if paper low */ 2 error_count fixed bin, /* error counter */ 2 buffer_ptr ptr, /* pointer to output buffer (spooler) */ 2 spool_info (56) fixed bin, /* place to store spooling_info */ 2 reload_vfc_train_after_special bit (1) aligned, /* "1"b if VFC/train images should be reloaded after next special interrupt */ 2 max_dcw_size fixed bin (12) uns unal, /* max wordcount of dcw */ 2 max_dcws fixed bin (6) uns unal, /* max dcws per idcw/buffer */ 2 n_dcws fixed bin (6) uns unal, /* current limit of dcws/buffer */ 2 b_begin fixed bin (3) uns unal, /* buffer index */ 2 b_stop fixed bin (3) uns unal, /* likewise */ 2 max_buffers fixed bin (3) uns unal, /* number of buffers allocated */ 2 n_buffers fixed bin (3) uns unal, /* number of buffers in use now */ 2 data_begin fixed bin (18) uns unal, /* first data word */ 2 data_end fixed bin (18) uns unal, /* size of working space in words */ 2 status_ptr ptr unal, /* ioi status area */ 2 flags aligned, 3 aborting bit (1) unal, /* next attempt to do i/o gets error and resets */ 3 eurc bit (1) unal, /* true if we know we are using EURC */ 3 flags_pad bit (16) unal, 2 version fixed bin unal, 2 status_table ptr unal, /* for analyze_device_stat_ */ 2 null_line_data bit (36) aligned, 2 null_line_dcw bit (36) aligned, 2 alarm_time fixed bin (71) unaligned; /* current timer_manager_ limit */ dcl prt_bufferp ptr; dcl 1 prt_buffer aligned based (prt_bufferp), 2 header, 3 number fixed bin (6) uns unal, 3 busy bit (1) unal, 3 pad bit (4) unal, 3 dcw_count fixed bin (7) uns unal, 3 data_ends fixed bin (18) uns unal, 2 idcw bit (36), 2 ddcw (sdb.max_dcws + 1) bit (36) aligned; dcl wseg (0:sdb.data_end - 1) bit (36) aligned based (sdb.wsegp); /* the IOI buffer segment */ dcl 1 prt_buffers (0:sdb.max_buffers - 1) aligned like prt_buffer based (sdb.wsegp); /* NOTE: The Spooling_dim IO Module also uses this include file, as it uses the printer stream also. If changes are made to this include file, see to it that the changes are also reflected in the Spooling_dim procedures. The spooling_dim uses the standard printer_dim order and changemode procedures. JCW 1/25/78 */ /* END INCLUDE FILE ... prt_sdb.incl.pl1 */ */ ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group Bull including Bull HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell Bull Inc., Groupe Bull and Bull HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, Bull or Bull HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by Bull HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved */