[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

895.0. "Immortal breakpoint" by DECC::MJHANS (Matthew Hanselman, DEC C/C++) Fri Mar 21 1997 13:59

    dxladebug 4.0-33:
    
    Here's how you can set a breakpoint that you can't disable (you have to
    delete it)
    
    Fire up dxladebug, and type this command sequence:
    
    	stop in foo ; disable 2 ; stop in foo
    
    You'll have 2 breakpoints for foo(), one enabled, one disabled, and you
    can't disable the one that's enabled (but you can delete it).  
    
    
    // Either C or C++
    foo()
    {
      return 0;
    }
                      
    main()
    {
      return 0;
    }
    
    							- Matt
T.RTitleUserPersonal
Name
DateLines
895.1PACKED::ALLENChristopher Allen, Ladebug, dtn 381-0864Mon Mar 24 1997 09:414
Thanks for reporting this; it's another symptom of problems with the breakpoint
view.  We will soon be attacking the list of breakpoint view problems.

-Chris