Tagged Questions

A breakpoint is an intentional stopping or pausing place in a program, put in place for debugging purposes.

learn more… | top users | synonyms

27
votes
9answers
6k views

Getting gdb to save a list of breakpoints?

OK, info break lists the breakpoints, but not in a format that would work well with reusing them using the --command as in this question. Does gdb have a method for dumping them into a file ...
21
votes
16answers
15k views

Why aren't my breakpoints working in Xcode?

I have breakpoints set but Xcode appears to ignore them.
18
votes
8answers
19k views

Fixing “The breakpoint will not currently be hit. No symbols have been loaded for this document.”

C# desktop application on express edition. Worked then didn't work 5 seconds later. I tried the following. Ensure debug configuration, debug flag, and full debug info are set on all assemblies. ...
17
votes
2answers
3k views

Programmatically stop Javascript execution in FireFox/FireBug

I am currently debugging complex Javascript/AJAX code written with mootools with FireBug. I am looking for a way to stop the JS execution as if it was a breakpoint programmatically. Ex: instructions ...
16
votes
3answers
7k views

Xcode + remove all breakpoints

Is there any way to remove all the breakpoints in Xcode? Regards, Pratik
13
votes
6answers
1k views

A curious case of Visual Studio 2010 debugger(it can not hit a break point)

A curious case of Visual Studio 2010 debugger(it can not hit a break point) This is the code that reproduces the problem: class Program { static void Main(string[] args) { bool b = false; ...
13
votes
4answers
1k views

How to debug a single thread in Visual Studio?

I have a solution with some projects. There are several break-points in different projects. I want to trace the first thread hit one of these break-points and continue tracing that single thread ...
13
votes
1answer
5k views

Why does my Eclipse project have phantom debugger breakpoints?

I've got a small project which, when run in the Eclipse debugger, always seems to stop in FileInputStream.class line 106, where files are opened. There are no breakpoints set, but Eclipse behaves ...
12
votes
4answers
729 views

How do breakpoints work in C++ code?

How do breakpoints work in C++ code? Are they special instructions inserted in between some assembler instructions when the code is compiled? Or is there something else in place? Also, how are ...
12
votes
5answers
4k views

How to wait until remote .NET debugger attached

Today I ran into a problem were I needed to remote-debug a program. The program was launched from another system, so I really don't have an opportunity to interact with it on the command line. I ...
11
votes
6answers
975 views

Why do conditional breakpoints slow my program down so much?

When I'm debugging something that goes wrong inside a loop, say on the 600th iteration, it can be a pain to have to break for every one. So I tried setting a conditional breakpoint, to only break if ...
11
votes
11answers
18k views

Eclipse - Unable to install breakpoint due to missing line number attributes

I am getting this strange error in Eclipse while trying to set a breakpoint. Unable to insert breakpoint Absent Line Number Information Ticked the checkbox from Compiler options but no luck. Thanks ...
11
votes
6answers
4k views

GDB breakpoints

I have a list of breakpoints which I want to add each time I debug a particular program. Is there a way I can put all these breakpoint information in a file and use it at the starting of each debug ...
10
votes
1answer
229 views

Creating breakpoint in Xcode for unrecognized selector

Is it possible to set the breakpoint in Xcode to have the debugger stop only on unrecognized selector? I have other exceptions that are triggering, and I only want to trigger on the unrecognized ...
10
votes
5answers
419 views

Visual Studio 2008 ASP.Net Debugging Zombie Breakpoints Come Back After Being Deleted

In Visual Studio 2008 while debugging an ASP.Net website I set a breakpoint in the codebehind page. I refresh the page or submit to call the method, the breakpoint is hit. Then I delete the breakpoint ...
10
votes
8answers
4k views

Why does F10 (step over) in Visual Studio not work?

I'm debugging a (web) project in Visual Studio 2008. I'm hitting a breakpoint. F10 continues to the next line, as expected, but the next F10 just stops debugging and the code continues without any ...
10
votes
3answers
479 views

eclipse beakpoint: stop before leaving a Java method

Is there a way to tell the debugger to stop just before returning, on whichever statement exits from the method, be it return, exception, or fall out the bottom? I am inspired by the fact that the ...
10
votes
2answers
1k views

How to simulate a Delphi breakpoint in code?

I am pretty sure I have seen this before, but I haven't found out / remembered how to do it. I want to have a line of code that when executed from the Delphi debugger I want the debugger to pop-up ...
9
votes
3answers
616 views

Visual Studio Breakpoint Warning

When debugging my code, I often throw breakpoints in to check the values of local variables to make sure everything is on the right track. Lately, when I make changes to my code and recompile, all my ...
9
votes
4answers
345 views

Is it possible to break all threads but one in Visual Studio 2010?

Is it possible to break all threads but one in Visual Studio 2010 Ultimate? One of the threads in my application is running a TCP proxy. The server that it connects to disconnects when the client ...
9
votes
2answers
182 views

Possible to delete a breakpoint for good when debugging?

When debugging, changes to breakpoints are only persisted for that debugging session. Once the debugger detaches the breakpoints are restored to their 'pre-debug' state. I can appreciate this is ...
9
votes
3answers
675 views

Can't set breakpoints on an auto-property setter ? Why?

Apparently VS 2008 does not allow setting a breakpoint just on the setter of an auto-property. I.e. if I define an auto-property like this: public int CurrentFramesize { get; ...
9
votes
6answers
1k views

Jump into a Python Interactive Session mid-program?

Hey I was wondering... I am using the pydev with eclipse and I'm really enjoying the powerful debugging features, but I was wondering: Is it possible to set a breakpoint in eclipse and jump into the ...
9
votes
1answer
970 views

Where are Visual Studio breakpoints saved?

I seem to be getting breakpoints from other programmers when checking out code... Where is the list of breakpoints saved by Visual Studio? In the vbproj file? vbproj.user file? documents and ...
8
votes
2answers
116 views

Does a breakpoint halt all threads?

If I have two threads running concurrently in my program and put a breakpoint on one of them, will the other thread stop also halt when this breakpoint is hit, or will it continue executing ...
8
votes
3answers
1k views

VS 2008 breakpoint will not currently be hit. No symbols have been loaded for this document

I am struggling to overcome this obstacle and I have high hopes that someone on SO can help. When I set a breakpoint in my class library project. It appears as a normal breakpoint. When I start ...
8
votes
3answers
559 views

Debugging automatic properties

Is there any way to set breakpoint on setter/getter in auto-implemented property? int Counter { get; set; } Other than changing it to standard property (I'm doing it in this way, but to do that I ...
8
votes
3answers
488 views

Visual Studio: How to stop breakpoint hit from stealing focus?

When a breakpoint is hit in Visual Studio, it steals the focus from whatever other application the programmer is viewing/typing into at that moment. This can be very irritating since VS grabs any ...
8
votes
6answers
411 views

Visual Studio - can be a breakpoint called from code?

I have a unit test project based on UnitTest++. I usually put a breakpoint to the last line of the code so that the I can inspect the console when one of the tests fails: n = ...
8
votes
1answer
654 views

How do you break into the debugger from Python source code?

What do you insert into Python source code to have it break into pdb (when execution gets to that spot)?
7
votes
3answers
965 views

Delphi 2010 remote debugging - unable to get breakpoints working

I recently posted this question about my inability to get Delphi 2010 working with remote debugging. I have not had any success and decided to post up a simple step-by-step test technique that might ...
7
votes
1answer
805 views

how to set a 'counter' for a GDB breakpoint

I have a function that is called some large number of times, and eventually segfaults. However, I don't want to set a breakpoint at this function and stop after every time it's called, because I will ...
7
votes
1answer
310 views

How does GameShark / Action Replay work on modern consoles?

It's quite difficult to find information about this on the internet, since the magical words "GameShark", "Action Replay", "memory editor" and "memory trainer" trigger lots of BS, so I thought I ...
7
votes
1answer
578 views

Can I add breakpoint on CreateProcess in VS

Can I add breakpoint on windows CreateProcess API in Visual studio like I can do in Windbg?
7
votes
6answers
2k views

Can .NET source code hard-code a debugging breakpoint?

I'm looking for a way in .NET (2.0, C# in particular) for source code to trigger a debugging break as if a breakpoint was set at that point, without having to remember to set a specific breakpoint ...
7
votes
4answers
7k views

Why does Eclipse CDT ignore breakpoints?

My problem is that I set some breakpoints in my code and some of them aren't working. In some places it complains about "Unresolved Breakpoint". Does anyone have any clue why this is happening? I am ...
7
votes
3answers
2k views

Visual Studio: How to trigger an alarm when a breakpoint is hit?

Is there a way to trigger a beep/alarm/sound when my breakpoint is hit? I'm using Visual Studio 2005/2008.
6
votes
3answers
243 views

Xcode is stopping at auto-continue breakpoints

When I set a breakopint in my project, and click the "continue after evaluating all actions" checkbox, Xcode does not continue. Not only that, execution frequently appears to hang. This is true ...
6
votes
1answer
171 views

How do you add breakpoints to a python program in IDLE?

I solved this already, I'm just posting it here because I couldn't figure it out with google, or by reading the docs. I only found it by accident. To add a breakpoint, right-click on the line that ...
6
votes
2answers
865 views

Visual Studio Debugging with Silverlight 4 and Firefox

When trying to debug a Silverlight 4 application in Visual Studio 2010 with Firefox as my browser, I am unable to hit any breakpoints. I get the message "breakpoint will not currently be hit".
6
votes
5answers
414 views

Xcode - Debugging a unit test target

I am writing tests for my iPhone app using OCUnit. Is there any way to debug the unit tests and have a break point to see what the heck is happening? It's ridiculously hard to write unit tests ...
6
votes
1answer
4k views

Error from Debugger: Previous frame inner to this frame (gdb could not unwind past this frame)

I am getting the following debugger error when I encounter a breakpoint on the device: Error from Debugger: Previous frame inner to this frame (gdb could not unwind past this frame) This occurs when ...
6
votes
4answers
528 views

Question on how to remove a Visual Studio Breakpoint

Let's say I have 10 breakpoints and I want to clear one but not the other 9. If I toggle the breakpoint on the one that I want to remove, it is resurrected the next time I restart the app. The only ...
6
votes
4answers
2k views

Cannot Debug Unmanaged Dll from C#

I have a DLL that was written in C++ and called from a C# application. The DLL is unmanaged code. If I copy the DLL and its .pdb files with a post build event to the C# app's debug execution dir I ...
6
votes
2answers
4k views

Setting breakpoints in Java

How does setting breakpoints in Java work? Is it just based on the source file name and line number? Does the class or method name also figure in? If I have an old version of the source in my ...
6
votes
4answers
4k views

How to set a breakpoint in Eclipse in a third party library?

I'm getting a NullPointerException in a Class from a 3rd party library. Now I'd like to debug the whole thing and I would need to know from which object the class is held. But it seems to me that I ...
5
votes
1answer
76 views

Unable to reach breakpoint in Visual Studio

I am facing a odd behavior of Breakpoints in Visual Studio 2010 Express. Below is the code with breakpoints. I am able to break at the first breakpoint (Line 159), but stepping after line 160, the ...
5
votes
2answers
107 views

How to debug on a property's set in Visual studio 2010?

Let's say I have this property public ISetting Setting { get; set; } How can I get breakpoint at the set? So that the program will pause when something is setting a value. I try to make it this ...
5
votes
4answers
412 views

How do I clear all Firebug JS breakpoints?

I seem to have a strange Firefox/Firebug issue where Firebug is suspending JS due to invisible/corrupt breakpoints. (Firefox 3.6.17, Firebug 1.7.2) This may or may not be related to jQuery (version ...
5
votes
1answer
670 views

Visual Studio is missing/moving my breakpoints

The problem is that when I place a breakpoint and debug/run, the breakpoint moves by itself. Before/whilst coding: After clicking run/breakpoint hit: Breakpoints typically work ok for me, but ...

1 2 3 4 5 9