COMPILATION LISTING OF SEGMENT pl1_time_ Compiled by: Multics PL/I Compiler, Release 28d, of September 14, 1983 Compiled at: Honeywell LCPD Phoenix, System M Compiled on: 10/03/83 1441.8 mst Mon Options: optimize map 1 /* ****************************************************** 2* * * 3* * * 4* * Copyright (c) 1972 by Massachusetts Institute of * 5* * Technology and Honeywell Information Systems, Inc. * 6* * * 7* * * 8* ****************************************************** */ 9 10 /* This procedure returns a string of the form HHMMSSFFFFFF 11* where HH is hours 12* MM is minutes 13* SS is seconds 14* FFFFFF is microseconds */ 15 16 /* Rewritten April 1980 by C. Hornig */ 17 18 pl1_time_: 19 procedure returns (char (12)); 20 21 dcl decode_clock_value_$time 22 entry (fixed bin (71), fixed bin, fixed bin, fixed bin, fixed bin (71), char (3), fixed bin (35)); 23 24 dcl (hour, minute, second) fixed bin; 25 dcl microsecond fixed bin (71); 26 dcl code fixed bin (35); 27 28 dcl 1 time_picture unaligned, 29 2 (hour, minute, second) pic "99", 30 2 microsecond pic "999999"; 31 32 dcl (clock, string) builtin; 33 34 call decode_clock_value_$time (clock (), hour, minute, second, microsecond, (""), code); 35 time_picture.hour = hour; 36 time_picture.minute = minute; 37 time_picture.second = second; 38 time_picture.microsecond = microsecond; 39 return (string (time_picture)); 40 end pl1_time_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 10/03/83 1006.0 pl1_time_.pl1 >spec>on>pl128d>pl1_time_.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. clock builtin function dcl 32 ref 34 34 code automatic fixed bin(35,0) dcl 26 set ref 34* decode_clock_value_$time 000000 constant entry external dcl 21 ref 34 hour automatic fixed bin(17,0) dcl 24 in procedure "pl1_time_" set ref 34* 35 hour ILLEGAL 0 picture level 2 in structure "time_picture" packed unaligned dcl 28 in procedure "pl1_time_" set ref 35* microsecond automatic fixed bin(71,0) dcl 25 set ref 34* minute automatic fixed bin(17,0) dcl 24 in procedure "pl1_time_" set ref 34* 36 minute ILLEGAL 0 picture level 2 in structure "time_picture" unaligned dcl 28 in procedure "pl1_time_" set ref 36* second automatic fixed bin(17,0) dcl 24 set ref 34* time_picture ILLEGAL 0 structure level 1 packed unaligned dcl 28 NAME DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. string builtin function dcl 32 NAME DECLARED BY EXPLICIT CONTEXT. pl1_time_ 000000 constant entry external dcl 18 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. ERROR 459, SEVERITY 3 ON LINE 28 Syntax error in the fixed-point picture declared for "hour". ERROR 440, SEVERITY 3 ON LINE 35 Syntax error in a picture declared for "cp.12". FATAL ERROR 335 ON LINE 36 Compiler error: not_in_read_bracket condition while in the semantic translator. Correct all source program errors and recompile. If this message persists, contact the compiler maintenance personnel. ----------------------------------------------------------- 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