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: ┃ T V

⟦793ef442e⟧ TextFile

    Length: 2253 (0x8cd)
    Types: TextFile
    Names: »V«

Derivation

└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦458657fb6⟧ 
            └─⟦a5bbbb819⟧ 
                └─⟦this⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦9b46a407a⟧ 
            └─⟦eec0a994f⟧ 
                └─⟦this⟧ 

TextFile

procedure Show_Tasks (Task_Or_Job_Id             : Integer;  
                      Show_Stack                 : Boolean := True;  
                      Show_Full_Stack            : Boolean := False;  
                      Show_Hex_Stack             : Boolean := False;  
                      Show_Packages              : Boolean := True;  
                      Name_Filter                : String  := "";  
                      Max_Tasks                  : Natural := 50;  
                      Names_File                 : String  :=  
                         "!Commands.System_Maintenance.@_Mload";  
                      Debug_File                 : String  :=  
                         "!Commands.System_Maintenance.@_Rdebug";
                      Structural_Expansion_Level : Natural := 4;
                      Pointer_Expansion_Level    : Natural := 3;
                      Max_Elements               : Natural := 20);

-- Scan the specified Task_Or_Job_Id.  If less than 256, it is
-- interpreted as a job id.  As many tasks as possible for the
-- job are located.

-- Show_Stack => stacks call trace is displayed

-- Show_Full_Stack => a full detailed display of the stack is provided,
--                    with each word shown and decoded.  The parameters
--                    Structural_Expansion_Level, Pointer_Expansion_Level,
--                    and Max_Elements control the amount of decoding word
--                    done.

-- Show_Hex_Stack => control stack words are displayed in hex.

-- Show_Packages => inactive package modules are listed.

-- Name_Filter is a string against which names of modules are matched.
-- If the Name_Filter is contained in the module name, it is listed, else
-- not.  The null string is in all names.

-- Max_Tasks = max number of modules to be displayed/traversed.  The search
-- stops once this count is reached.  Running time is partially proportional
-- to the square of this number.

-- In MV location names, the package is listed along with the subprogram
-- node number and statement number.  The node number is the diana node
-- id in the MV tree.

-- The Names_File is a pattern for file names.  These files are Mload
-- format files listing package names for each code segment.