The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
13 views

IntelliJ Idea (debugging) conditional breakpoint dependent on other breakpoints

I want to set a debug breakpoint in IntelliJ Idea that is only active, if another previous breakpoint was activated. For example i have a breakpoint B1 on line 10, and another breakpoint B2 on line ...
0
votes
1answer
64 views

Setting memory breakpoint in Visual Studio 2012

I need to set breakpoint that watches a specific address in memory (e.g. 0x0483d7cc) that is hit when the content changes. I am using Visual Studio 2012 and C++. How can I do that?
1
vote
3answers
66 views

Eclipse Conditional-Breakpoint. Howto check if exception occurs?

I have this function: public static FradId readFradId(DataInput pIn) throws IOException { Integer lMainId = Integer.valueOf(pIn.readInt()); Integer lReferenceId = ...
0
votes
1answer
36 views

breakpoint in template for specific template parameter

What if i want to set breakpoint into constructor with condition if I == 10? template < typename T, int I > class C { public: C<T, I>() { cout << I << endl; } };
1
vote
0answers
239 views

Xcode LLDB: How do I set a conditional breakpoint based on the this pointer?

I have a c++ application and am trying to debug it under Xcode using LLDB. I would like to stop inside a member function, but only when the this pointer matches a specific instance. I have tried ...
1
vote
1answer
52 views

How can I move a conditional breakpoint in Eclipse?

I've set a conditional breakpoint on the wrong line. I would like to move it up one line. Is that even possible? I know that I can always copy paste the condition into a new breakpoint at the correct ...
0
votes
2answers
74 views

Is it possible to link conditional breakpoints and scrapbook in Eclipse?

Is it possible to link conditional breakpoints and scrapbook in Eclipse? I would like to have a conditional breakpoint trigger a piece of scrapbook code to be run (automatically). Something like... ...
0
votes
1answer
129 views

Setting Memory Breakpoints in Eclipse

How do you set memory breakpoints in Eclipse? That is, I would like to set a conditional breakpoint that triggers when the data at a given memory location changes. This question has been asked ...
0
votes
2answers
88 views

Why would the value of a variable change after hitting a breakpoint?

I'm trying to debug a unit test that fails about 30% of the time. It seems to be some kind of timing issue, because unfortunately, it never fails when I have a breakpoint in the code. So, I set a ...
0
votes
0answers
101 views

visual studio breaking point condition: trigger break when something returns false. Is it possible

I have a function body that contains many other functions calls that may in some moment of time returns false. It is very boring to place each breakpoint at the row, because the points are so many ...
2
votes
4answers
213 views

How to check if a pointer variable is junk during runtime?

I use valgrind to validate my code and it reports "Conditional jump or move depends on uninitialised value(s)" in one of my functions, which takes an array of pointers as argument. Now, how do I ...
0
votes
3answers
354 views

debugging pthreads with gdb

I'm trying to debug a very infrequent deadlock and I've narrowed it down to a problem with a pthread_mutex, which is of type 1 (recursive). I want to track down where this mutex is coming from and ...
0
votes
1answer
509 views

Conditional breakpoints in Visual Studio 2010 do not have to be boolean?

I do not understand what 'conditional' means for conditional breakpoints in Visual Studio. Maybe somebody can explain the following behavior? When setting a conditional breakpoint (selecting 'Is ...
2
votes
1answer
149 views

Visual Studio: Why don't conditional breakpoints accept F# operators?

When placing a conditional breakpoint in my code, this fails: "Sophie Dee" <> myString However, this works fine: "Sophie Dee" != myString Is this fixed in VS2012?
1
vote
1answer
740 views

Eclipse ADT cannot set conditional breakpoint on SDK sources: missing java Project context

I am trying to debug a simple Android app with Eclipse 3.7.1. I attachted the Android SDK sources so I can step through the code of the SDK also. I can set unconditional breakpoints on code of the SDK ...
0
votes
1answer
478 views

How to set memory breakpoint in Eclipse

Could anyone tell me how to set memory breakpoint in Eclipse (C++)? for example: int a = 0; for(int i = 0; i < 100; i++) { if(i == 50) a = 50; } I want to detect the action when a is ...
10
votes
1answer
494 views

Do any R IDEs support conditional breakpoints?

Which, if any, R IDEs (e.g. StatET, Revolution R, RStudio, ESS, NppToR, others) support conditional breakpoints? This is available via bp in the debug package, or via an additional bit of code that ...
6
votes
2answers
229 views

There is any quick way to, while debuging, to stop at a specific Windows Message or API?

So I want to put a Breakpoint in a specific API or Windows message. I don't find any easy way to do that without writing code in any Delphi version. Is there a way to do that similar as I can put a ...
4
votes
2answers
224 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
1answer
357 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 ...
10
votes
3answers
549 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 ...
18
votes
3answers
8k 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++){ --> ...
0
votes
2answers
207 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 ...
6
votes
4answers
442 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 ...
1
vote
1answer
586 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 ...
2
votes
3answers
41 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
725 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 ...
7
votes
2answers
526 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 ...
0
votes
1answer
122 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 ...
3
votes
2answers
804 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 ...
0
votes
1answer
363 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 ...
3
votes
4answers
1k 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 = ...
10
votes
2answers
5k 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, ...
4
votes
1answer
443 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?
4
votes
1answer
686 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, ...
0
votes
1answer
177 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 ...
2
votes
2answers
1k 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 ...
3
votes
2answers
521 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 ...
5
votes
5answers
10k views

Conditional breakpoint in Visual Studio

I want to set a breakpoint on a certain line in C# code when some other variable is equal to a specific value, say: MyStringVariable == "LKOH" How can I do that? I tried to right click on ...
1
vote
4answers
916 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
330 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 ...
11
votes
4answers
4k 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 ...
3
votes
5answers
645 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. ...
1
vote
1answer
385 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
5answers
550 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 ...
5
votes
2answers
2k 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 ...
4
votes
5answers
587 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 ...