|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - download
Length: 648 (0x288) Types: TextFile Notes: R1k Text-file segment
└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000 └─ ⟦5a81ac88f⟧ »Space Info Vol 1« └─⟦49607d7f6⟧ └─⟦this⟧
-- ------------------------------------------------------------------------- -- CIFO shared data protection. -- See CIFO section titled "Mutually Exclusive Access to Shared Data". -- (CIFO V2 specification) -- ------------------------------------------------------------------------- generic type ITEM_TYPE is private; package SHARED_DATA_GENERIC is type SHARED_DATA is limited private; procedure WRITE (TO_OBJECT : in out SHARED_DATA; NEW_VALUE : in ITEM_TYPE); function VALUE_OF (OBJECT : SHARED_DATA) return ITEM_TYPE; function INITIALIZED (OBJECT : SHARED_DATA) return BOOLEAN; end SHARED_DATA_GENERIC