|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1149 (0x47d)
Types: TextFile
Names: »B«
└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
└─⟦5cb1d1d7f⟧ »DATA«
└─⟦3b1ee7bd8⟧
└─⟦this⟧
separate (Tracker.Subsystem_Pkg.Ss_Set_Up)
procedure Ss_Read is
---------------------------------------------------------------------------
--|
--| NAME: SS_READ
--|
--| OVERVIEW:
--| This procedure reads a record from the file. One line of data is
--| read at a time and broken down into the fields of the
--| subsystem record, which is made visible to the calling routine
--| SS_SET_UP. The data is read in the format specified by the SS_WRITE
--| procedure.
--|
--|
--| EXCEPTIONS HANDLED:
--| none
--|
--| HISTORY:
--| written by May Lee March 1985
--|
--| NOTES:
--| Any exceptions raised here are handled by SS_SET_UP.
--|
---------------------------------------------------------------------------
begin
Get (Tracker_File, Ss_Record.Name (1 .. 10)); -- string
Get (Tracker_File, Ss_Record.Percent_At_Start, 5); -- real
for Ac_Index in 1 .. Num_Of_Activities loop
Get (Tracker_File, Ss_Record.Task_Numbers (Ac_Index), 4);
end loop;
Skip_Line (Tracker_File);
end Ss_Read;