Top "Breakpoints" questions

A breakpoint is a mechanism offered by a development environment that allows to interrupt and suspend the execution of a program for debugging purpose, in view of resuming the execution.

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 …

c# asp.net multithreading visual-studio-2010 breakpoints
Are "EXC_BREAKPOINT (SIGTRAP)" exceptions caused by debugging breakpoints?

I have a multithreaded app that is very stable on all my test machines and seems to be stable for …

cocoa macos exception gdb breakpoints
How to view all the breakpoints in eclipse?

I am new to eclipse and I am unable to view all the breakpoints that I have placed. I even …

eclipse breakpoints
Switching CSS classes based on screen size

CSS newby here... I'm looking at a responsive framework and imagining how I would accomplish different tasks. Based on the …

css styles breakpoints
Breakpoint Failed to Bind - Visual Studio 2015

I just upgraded from Visual Studio 2013 to 2015 and now I am having trouble with breakpoints. It's a hit or a …

c# visual-studio visual-studio-2013 visual-studio-2015 breakpoints
See all breakpoints in Visual Studio 2010+

Is there a window in Visual Studio 2010 and newer where I can see all the breakpoints that I have in …

visual-studio-2010 visual-studio breakpoints
How to set break point on one file of a project which has many files with same name?

I want to set a break point in gdb on file service.cpp on line 45 and I do: gdb> …

gdb breakpoints ambiguity
How to set a conditional breakpoint in Xcode based on an object string property?

I'm looking to be able to have the debugger break when it reaches a particular string match. As an example, …

objective-c xcode debugging breakpoints
Android Studio's debugger not stopping at breakpoints within library modules

At the moment I'm developing an Android app that is based on third party code. I started to set breakpoints …

android debugging android-studio breakpoints
What is meant by a number after "break" or "continue" in PHP?

Could someone please explain, with examples, what is meant by loop break 2 or continue 2 in PHP? What does it mean …

php loops breakpoints break continue