Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
295 views

Eclipse / conditional breakpoint results in BreakpointException

I want to debug a static inner class, which is actually a Callable. Whenever I try to set a conditional breakpoint in Eclipse I get the breakpoint error: The type com.sun.source.tree.Tree$Kind ...
6
votes
3answers
1k views

how to create conditional breakpoint with std::string

Suppose I have this function: std::string Func1 (std::string myString) { //do some string processing std::string newString == Func2(myString) return newString; } how do I set a ...
5
votes
3answers
169 views

how to use conditional breakpoint in eclipse?

I want to know how to place a conditional breakpoint in eclipse. i have a code like: public static void doForAllTabs(String[] tablist){ for(int i = 0; i<tablist.length;i++){ --> ...
5
votes
2answers
174 views

Conditional Breakpoints on Call Stack

Is it possible to specify a breakpoint in Visual Studio 2010 that hits only if the calling methods up the call stack meet some specific condition? For example, and most likely, method name. I am ...
4
votes
4answers
138 views

Can I set a conditional breakpoint in base class method which triggers only if it's an instance of specific derived class?

Let's say I have some base class A and two derived classes B and C. Class A has some method called f(). Is there a way to set a conditional breakpoint in A::f() in visual studio which will be hit ...
4
votes
1answer
213 views

Put breakpoint on named function

Is there a way to put a breakpoint on any function in Visual Studio, sort of like bm kernel32!LoadLib* in WinDbg? I know one way is to break at application start, find the required DLL load address, ...
3
votes
2answers
42 views

Visual studio breakpoint conditional on the stack state

Visual studio can print call stack when breakpoint hit, and can stop when conditions are met, is there any way to combine that and stop when function is called from another selected one, and ignore ...
3
votes
2answers
440 views

How to set conditional breakpoint in anonymous inner class depending on final local variable?

suppose I have the following class and want to set a conditional breakpoint on arg==null at the marked location. This won't work in eclipse and gives the error "conditional breakpoint has compilation ...
3
votes
4answers
441 views

How to use Condition in Delphi Breakpoint properties

I found that a nested loop fails when some particular condition is reached, somehow when I = 1, J = 3 and k = 5 I tried to right click on the breakpoint and in the condition I set (I = 1) and (J = ...
3
votes
5answers
414 views

C++: watch a memory location/install 'data breakpoint' from code?

We have a memory overwrite problem. At some point, during the course of our program, a memory location is being overwritten and causing our program to crash. the problem happens only in release mode. ...
2
votes
3answers
37 views

Breaking the Nth time a line gets exectued

Is there a way to tell the Visual Studio debugger, "break at this line the Nth time it gets executed, not before" (where N is an integer greater than 1)? (Just for information, I'm using the C# ...
2
votes
1answer
245 views

Can conditional breakpoints be set while debugging in SSMS?

I've just begun using breakpoints to debug a T-SQL stored procedure in Management Studio (SQL Server 2008). I notice that the breakpoints window has a condition column: But I can't find any way to ...
2
votes
1answer
219 views

GDB Break if frame is in backtrace

I want to set a condition on a gdb breakpoint to only break if a certain function name appears in the backtrace. What's the best way to do this?
2
votes
2answers
211 views

How to put a breakpoint at the end of a function in windbg, so that I dont need to edit it even if some lines have been added/deleted in the source?

I need to log some data when some functions are hit, both at the start of execution and and the end of it. While i have no problem with putting breakpoints at the start of the functions(using bu ...
2
votes
5answers
3k views

Conditional breakpoint in Visual Studio

I want to set breakpoint on certain line in C# code when some other variable is equal to specific value say MyStringVariable == "LKOH" Please suggest. I tried right click on breakpoint ...
2
votes
2answers
597 views

how can I put a breakpoint on “something is printed to the terminal” in gdb?

I would like to know from where inside a huge application a certain message is printed. The application is so big and old that it uses all conceivable ways of printing text to the terminal; for ...
2
votes
5answers
420 views

Why does Conditional breakpoint decrease the application execution speed at debug time?

When I use conditional breakpoint in VS2005 instead of using temporary code to check specific conditions, I noticed it takes more time and the execution speed is decreased!! Do you know why? and how ...
1
vote
1answer
577 views

conditional breakpoint in gdb

Is it possible to put a conditional breakpoint for a variable of type char*? Say, can I specify that I want gdb to break at line x when char* x points to a string whose value equals "hello"? If yes, ...
1
vote
2answers
344 views

Can XCode break when data ata memory location changes

Visual Studio has always been able to do this - if you know a mem loc then you can set conditional breakpoints when that mem loc's value changes to a particular value or changes at all. Is that what ...
1
vote
4answers
448 views

Conditional Debug on Visual C++ 2008 Express

Is there a way to debug code on Visual C++ 2008 Express, such as I can watch a variable for certain value(s) and, when it assumes this value, to break? For instance, I want to break when xbecomes 5. ...
1
vote
1answer
285 views

Using tuples in conditional breakpoints in Visual Studio 2010

Will this be possible? In F# or C#? Both? For example, I would like to set a conditional breakpoint in a F# program like that: [x] Condition: myTuple == (3,3) (o) Is true (_) Has changed ...
1
vote
1answer
275 views

Why is my Breakpoint Condition not being met when my Breakpoint Condition is being met in Visual Studio?

I have a piece of code in front of me that iterates through a long list of urls and something is going wrong when those urls include a certain type of document. I don't want to see every iteration, so ...
0
votes
1answer
50 views

use one breakpoint's hit count for another breakpoint's condition

I'm using Visual Studio 2008 on C# code. I would like to only break on a breakpoint if another breakpoint has been hit (and broken upon.) Is there a way of doing that? I would imagine as a ...
0
votes
2answers
58 views

problem debugging with conditional breakpoint python

When I try to run the following bit of code, I get the error TypeError: object of type 'NoneType' has no len() (referring to the variable stringConverted). I've tested different values and it works ...
0
votes
1answer
169 views

Conditional breakpoint that tests multiple stack variables

I'm debugging an application at a point where it uses a dialog box to get some information from the user, and then does some processing on that information. By setting a breakpoint on ...
0
votes
1answer
74 views

Windows 7 /Eclipse watchpoint on file access

Is there a way in Eclipse [Helios] on Win 7 to watch for a file to be opened? Do I have to know where the app is going to do so, or is there a way to watch for a java.io object being created/something ...
0
votes
1answer
104 views

Can I dynamically place a breakpoint in the event of an exception in Ruby?

I'd like to be able to set conditional breakpoints in ruby-debug, where the condition is "An exception was thrown." What I'd like is the ability to land on a breakpoint whenever an exception is ...
0
votes
1answer
79 views

Visual Studio 2005 : Break when a value appears

I'm trying to simplify my debugging tasks and I had an idea which could increase my debugging speed. Suppose I have a value, say 2.8651 that appear in the code at a moment I do not know. I'm ...
0
votes
5answers
440 views

Visual Studio - Runtime impact of conditional and disabled breakpoints

After spending a little time wondering why my app was running a particular scenario very slowly with the debugger attached, I discovered that this was due to having a conditional breakpoint (whose ...