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: ┃ B T

⟦f663d049c⟧ TextFile

    Length: 893 (0x37d)
    Types: TextFile
    Names: »B«

Derivation

└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13
    └─ ⟦124ff5788⟧ »DATA« 
        └─⟦this⟧ 
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Text_Io;
package body Counter is

    task type Counter_Implementation is
        pragma Os_Task (0);
        entry Start;
    end Counter_Implementation;

    type Counter_Implementation_Access is access Counter_Implementation;

    Handle : Counter_Implementation_Access;

    procedure Start is
    begin
        Text_Io.Put_Line ("counter.start.in");
        Handle.Start;
        Text_Io.Put_Line ("counter.start.out");
    end Start;

    procedure Create is
    begin
        Handle := new Counter_Implementation;
        Text_Io.Put_Line ("counter.create.out");
    end Create;

    task body Counter_Implementation is
        I : Integer := 0;
    begin
        accept Start;
        loop  
            Image (I);
            I := I + 1;
            delay 1.0;
        end loop;
    end Counter_Implementation;

begin
    Text_Io.Put_Line ("elaboration de counter");
end Counter;