DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400

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

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦953325007⟧ TextFile

    Length: 976 (0x3d0)
    Types: TextFile
    Notes: R1k Text-file segment

Derivation

└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000
    └─ ⟦5a81ac88f⟧ »Space Info Vol 1« 
        └─⟦481e0757f⟧ 
            └─⟦this⟧ 

TextFile

-- -------------------------------------------------------------------------
-- CIFO Task identifiers.  Used by all the other packages.
-- See CIFO section titled "Task Identifiers".
-- -------------------------------------------------------------------------

package TASK_IDS is

   -----------------
   -- CIFO V3 names:
   -----------------

   subtype TASK_ID is TID.TASK_ID;

   TASK_ID_ERROR : exception;

   function NULL_TASK return TASK_ID;

   function SELF return TASK_ID;

   function MASTER_TASK (I : TASK_ID := SELF) return TASK_ID;

   function CALLER      (I : TASK_ID := SELF) return TASK_ID;

   function CALLABLE    (I : TASK_ID := SELF) return BOOLEAN;

   function TERMINATED  (I : TASK_ID := SELF) return BOOLEAN;

   -----------------
   -- CIFO V2 names:
   -----------------

   generic
      type TASK_TYPE is limited private;
   function ID_OF  (T : TASK_TYPE) return TASK_ID;

   function PARENT (I : TASK_ID := SELF) return TASK_ID;

end TASK_IDS