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

⟦e1c6265fb⟧ TextFile

    Length: 674 (0x2a2)
    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


-- PERFORMANCE MEASUREMENT : Measure the average time to pass an integer
--                           from a producer task through a buffer task
--                           to a consumer task

package Task_Pack_8 is

    task type Buffer_Type is
        entry Take_Item (Item : in Integer);
        entry Give_Item (Item : out Integer);
    end Buffer_Type;

    task type Producer_Type is
        entry Produce (Count : in Natural);
    end Producer_Type;

    task type Consumer_Type is
        entry Consume (Count : in Natural);
        entry Wait_For_Consumer_Completion (Check : out Natural);
    end Consumer_Type;

    Buffer_Task : Buffer_Type;

end Task_Pack_8;