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

⟦50f610b8b⟧ TextFile

    Length: 1686 (0x696)
    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 Counter;
with Logger_Interface;
with Text_Io;
with Xt_Interface;
package body Desktop is

    -- task Display is
    --     entry Put (M : String);
    -- end Display;
    --
    -- task Counter is
    --     entry Start;
    --     pragma Os_Task (0);
    -- end Counter;
    --
    -- task Main_Loop is
    --     entry Start;
    --     pragma Os_Task (0);
    -- end Main_Loop;

    -- task body Counter is
    --     I : Integer := 0;
    -- begin
    --     accept Start;
    --     loop
    --         Logger_Interface.Put (Integer'Image (I));
    --         delay 1.0;
    --     end loop;
    -- end Counter;
    --
    --
    -- task body Main_Loop is
    -- begin
    --     accept Start;
    --     loop
    --         Xt_Interface.Next_Event;
    --         Xt_Interface.Dispatch_Event;
    --     end loop;
    -- end Main_Loop;

    -- task body Display is
    -- begin
    --     accept Put (M : String) do
    --         Text_Io.Put_Line (M);
    --     end Put;
    -- end Display;

    procedure Image (I : Integer) is
    begin
        Logger_Interface.Put (Integer'Image (I));
    end Image;

    package C is new Counter (Image);

    procedure Start is
    begin
        Logger_Interface.Init;  
        Logger_Interface.Put ("c'est_parti");
        C.Create;
        C.Start;
        -- Main_Loop.Start;
        -- delay Duration'Last;

        loop

            declare
                S : constant String := Logger_Interface.Get_Message;
            begin
                Text_Io.Put_Line ("main loop: s = " & S);
            end;
            Xt_Interface.Next_Event;
            Xt_Interface.Dispatch_Event;
        end loop;
    end Start;

end Desktop;