|
|
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: T V
Length: 674 (0x2a2)
Types: TextFile
Names: »V«
└─⟦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⟧
-- 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;