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

⟦1b6e519ad⟧ TextFile

    Length: 1031 (0x407)
    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« 
        └─⟦978b3879d⟧ 
            └─⟦this⟧ 

TextFile

-- -------------------------------------------------------------------------
-- CIFO package that suspends and resumes a task.
-- See CIFO section titled "Controlling when a task executes".
-- -------------------------------------------------------------------------

with TASK_IDS;

package DISPATCHING_CONTROL is

   type TASK_SUSPENSION_STATUS is (PROTECTED, SUSPENDED, UNTOUCHED);

   procedure SUSPEND (I : in TASK_IDS.TASK_ID);
   function  SUSPEND (I : in TASK_IDS.TASK_ID) 
      return TASK_SUSPENSION_STATUS;

   procedure RESUME (I : in TASK_IDS.TASK_ID);
   function  RESUME (I : in TASK_IDS.TASK_ID) 
      return TASK_SUSPENSION_STATUS;

   procedure PROTECT (I : in TASK_IDS.TASK_ID);
   function  PROTECT (I : in TASK_IDS.TASK_ID) 
      return TASK_SUSPENSION_STATUS;

   procedure UNPROTECT (I : in TASK_IDS.TASK_ID);
   function  UNPROTECT (I : in TASK_IDS.TASK_ID) 
      return TASK_SUSPENSION_STATUS;

   function STATUS (I : in TASK_IDS.TASK_ID) 
      return TASK_SUSPENSION_STATUS;

end DISPATCHING_CONTROL