/* BEGIN INCLUDE FILE fortran_job_bits.incl.pl1 */ /****^ *********************************************************** * * * Copyright, (C) Honeywell Information Systems Inc., 1987 * * * *********************************************************** */ /****^ HISTORY COMMENTS: 1) change(86-07-14,BWong), approve(86-07-14,MCR7286), audit(86-07-17,Ginter), install(86-07-28,MR12.0-1105): Fix fortran bug 454. 2) change(87-06-23,RWaters), approve(87-06-23,MCR7703), audit(87-07-10,Huen), install(87-08-06,MR12.1-1069): Implemented SCP 6315: fortran error-handling argument. END HISTORY COMMENTS */ /* Modified: May 15 1987 by R. Waters - SCP 6315 added debug_io bit. May 23 1985 by B.Wong - 454: document internal file mode. March 28 1984 by M. Mabey to install HFP support. May 11 1980 by Marshall Presser to add ansi_77 bit July 13 1979 by C R Davis to add fold bit. May 17 1977 by David Levin to extend control_type field and add iostat_var */ 2 job_bits unaligned structure, 3 error_label bit(1), /* if err= supplied in statement. */ 3 end_label bit(1), /* if end= supplied in statement. */ 3 read bit(1), /* if not control stmnt then read if true, write if false. */ 3 format bit(2), /* list directed-"00"b, unfmt-"01"b, fmt-"10"b, namelist-"11"b */ 3 mode bit(2), /* seq-"00"b, direct access-"01"b, string io-"10"b, internal file-"11"b */ 3 list bit(1), /* if I/O transmission includes a list. */ 3 control_type bit(4), /* see fortran_io_consts.incl.pl1 for meanings */ 3 mbz bit(1), /* to allow expansion of control_type. MUST BE ZERO */ 3 iostat_var bit(1), /* if iostat= supplied in statement */ 3 debug_io bit(1), /* if user wants cu_$cl called after an io error */ 3 reserved bit(3), /* used to be bit (4) but I stole one for debug_io. Hope they're not important :-) */ /* the following two fields are generated at runtime */ 3 have_input bit(1), /* if buffer contains a printable input record. */ 3 end_of_input bit(1), /* if user has terminated list-dir input */ 3 fold bit (1), /* if symbol names have been folded to lower case */ 3 ansi_77 bit(1), /* if source has been compiled in ansii77 mode */ 3 hfp bit(1), /* if hex floating point math is to be used */ 3 pad bit(13), /* END fortran_job_bits.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 */