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 - download
Index: ┃ T V

⟦7e4a60ac7⟧ TextFile

    Length: 672 (0x2a0)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Calendar;  
with Etape;
package Timer_Moteur is
    type Objet is limited private;  
    procedure Init_Temps (The_Chrono : in out Timer_Moteur.Objet);
    procedure Reset_Temps (The_Chrono : in out Timer_Moteur.Objet);
    procedure Start_Temps (The_Chrono : in out Timer_Moteur.Objet);
    procedure Stop_Temps (The_Chrono : in out Timer_Moteur.Objet);
    function Temps_Moteur (The_Chrono : Timer_Moteur.Objet) return Etape.Temps;
private  
    task type Chrono is
        entry Reset_Temps;
        entry Start_Temps;
        entry Stop_Temps;
        entry Temps_Moteur (T : out Etape.Temps);
    end Chrono;
    type Objet is access Chrono;
end Timer_Moteur;