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

⟦66a4e3b01⟧ TextFile

    Length: 1396 (0x574)
    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

SEPARATE (Transport)
FUNCTION Convert_Errno (Errno : Unix_Base_Types.Int)
                       RETURN Transport_Defs.Status_Code IS
BEGIN
   CASE Errno IS
      WHEN System_Interface.Error.Econnreset |
           System_Interface.Error.Eremoterelease =>
         RETURN Transport_Defs.Connection_Broken;
      WHEN System_Interface.Error.Enomem =>
         RETURN Transport_Defs.No_Free_Memory;
      WHEN System_Interface.Error.Eacces =>
         RETURN Transport_Defs.Access_Denied;
      WHEN System_Interface.Error.Eprotonosupport =>
         RETURN Transport_Defs.Protocol_Not_Supported;

      WHEN System_Interface.Error.Eaddrinuse =>
         RETURN Transport_Defs.Socket_In_Use;

      WHEN System_Interface.Error.Enetunreach =>
         RETURN Transport_Defs.Network_Unreachable;

      WHEN System_Interface.Error.Enotconn =>
         RETURN Transport_Defs.Not_Connected;
      WHEN System_Interface.Error.Eshutdown =>
         RETURN Transport_Defs.Not_Open;
      WHEN System_Interface.Error.Etimedout =>
         RETURN Transport_Defs.Timed_Out;
      WHEN System_Interface.Error.Econnrefused =>
         RETURN Transport_Defs.Connection_Refused;
      WHEN System_Interface.Error.Ehostunreach =>
         RETURN Transport_Defs.Host_Unreachable;
      WHEN OTHERS =>
         RETURN Transport_Defs.Status_Code (Errno + Unix_Base_Types.Int (100));
   END CASE;
END Convert_Errno;