DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T V

⟦033bccf81⟧ TextFile

    Length: 1952 (0x7a0)
    Types: TextFile
    Names: »V«

Derivation

└─⟦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⟧ 

TextFile

--
-- RUN_TIME_STATISTICS by Richard Conn, TI Ada Technology Branch
-- 27 Feb 85
--

with Count_Statistics;
package Run_Time_Statistics is
    --------------------------------------------------------------------------
    -- Abstract   : run_time_STATISTICS maintains counters which may be used
    --               to keep track of the frequency of certain error
    --               conditions, as enumerated in the type STATISTIC.  To
    --               use this package, the routine INITIALIZE_COUNTERS will
    --               clear all counters, the routine INCREMENT_COUNTER will
    --               increment the indicated counter, and the routine
    --               COUNT will return the value of the indicated counter.
    --
    --------------------------------------------------------------------------

    type Statistic is (Corrected_Words, Suspect_Words,
                       Failed_Restores, Words_Changing_Length);

    package Rts is new Count_Statistics (Statistic);

    procedure Initialize_Counters renames Rts.Initialize_Counters;
    --------------------------------------------------------------------------
    -- Abstract   : This routine sets the values of all counters to zero.
    --------------------------------------------------------------------------


    procedure Increment_Counter (Counter : Statistic)
        renames Rts.Increment_Counter;
    --------------------------------------------------------------------------
    -- Abstract   : This routine increments the indicated counter.
    --------------------------------------------------------------------------


    function Count (Counter : Statistic) return Natural renames Rts.Count;
    --------------------------------------------------------------------------
    -- Abstract   : This routine returns the value of the indicated counter.
    --------------------------------------------------------------------------

end Run_Time_Statistics;