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

⟦35e5f6435⟧ TextFile

    Length: 462 (0x1ce)
    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

package Monitor is

    type Kind is limited private;

    procedure Start_Reading (The_Monitor : in Kind);
    procedure Stop_Reading (The_Monitor : in Kind);

    procedure Start_Writing (The_Monitor : in Kind);
    procedure Stop_Writing (The_Monitor : in Kind);

private
    type Service is (Read, Write);
    task type Kind is
        entry Start (The_Service : in Service);
        entry Stop_Reading;
        entry Stop_Writing;
    end Kind;
end Monitor;