|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 1524 (0x5f4)
Types: TextFile
Names: »V«
└─⟦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⟧
with Semaphore;
generic
type Item is private;
type Priority is limited private;
with function Priority_Of (The_Item : in Item) return Priority;
with function "<=" (Left : in Priority; Right : in Priority) return Boolean;
package Queue_Priority_Balking_Guarded_Unbounded_Unmanaged_Noniterator is
type Queue is limited private;
procedure Seize (The_Queue : in Queue);
procedure Release (The_Queue : in Queue);
procedure Copy (From_The_Queue : in Queue; To_The_Queue : in out Queue);
procedure Clear (The_Queue : in out Queue);
procedure Add (The_Item : in Item; To_The_Queue : in out Queue);
procedure Pop (The_Queue : in out Queue);
procedure Remove_Item (From_The_Queue : in out Queue;
At_The_Position : in Positive);
function Is_Equal (Left : in Queue; Right : in Queue) return Boolean;
function Length_Of (The_Queue : in Queue) return Natural;
function Is_Empty (The_Queue : in Queue) return Boolean;
function Front_Of (The_Queue : in Queue) return Item;
function Position_Of
(The_Item : in Item; In_The_Queue : in Queue) return Natural;
Overflow : exception;
Underflow : exception;
Position_Error : exception;
private
type Node;
type Structure is access Node;
type Queue is
record
Guard : Semaphore.Kind;
The_Front : Structure;
The_Back : Structure;
end record;
end Queue_Priority_Balking_Guarded_Unbounded_Unmanaged_Noniterator;