[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference turris::decladebug

Title:Digital Ladebug debugger
Moderator:TLE::LUCIA
Created:Fri Feb 28 1992
Last Modified:Fri Jun 06 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:969
Total number of notes:3959

913.0. "Disappearing monitors..." by CXXC::MJHANS (Matthew Hanselman, DEC C/C++) Mon Apr 07 1997 15:42

    dxladebug 4.0-33 and DEC C++ V5.5:
    
    The monitor window can be coerced to forget everything it had in it. 
    Take the program at the bottom, compile, and follow these steps:
    
    1) Fire up dxladebug
    2) Place a monitor on "a"
    3) Click [continue]
    4) Close monitor view via "Views->Monitor View"
    5) Re-run the program via "File->Rerun same program"
    6) Open mintor view via "Views->Monitor View"
    
    The monitor view will now be empty.
    
    ------------------
    float a;
    
    main()
    {
    }                                                         
    ------------------
    
    							- Matt
T.RTitleUserPersonal
Name
DateLines
913.1PACKED::ALLENChristopher Allen, Ladebug, dtn 381-0864Tue Apr 08 1997 15:364
Thanks for reporting this problem; it's on our list.

-Chris

913.2Same underlying problem?CXXC::MJHANSMatthew Hanselman, DEC C/C++Mon Apr 14 1997 10:2212
    This is probably related.
    
    dxladebug 4.0-35
    
    If you take the following program (either C or C++), load it under
    dxladebug, place a monitor on "a", remove the monitor on "a", and
    re-run the program, the monitor window will again have "a" in it.
    
    int a;
    main(){}
    
    							- Matt