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

⟦5d827cd50⟧ TextFile

    Length: 704 (0x2c0)
    Types: TextFile
    Names: »B«

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

with Remote_Global;
use Remote_Global;
package body Except_Pack_5 is

    task body Except_Task_5 is
    begin
        loop
            begin
                accept Task_5 (Switch : Boolean) do
                    if Switch then
                        raise
                           My_Exception; -- one increment below, one in caller
                    else
                        Global := Global + 2;
                        Remote;
                    end if;
                end Task_5;
            exception
                when My_Exception =>
                    Global := Global + 1;
                    Remote;
            end;
        end loop;

    end Except_Task_5;

end Except_Pack_5;