Questions tagged [breakpoints]

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.

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.

External reference:

2934 questions
1
vote
0 answers

zurb foundation 6 topbar help creating custom breakpoint?

I'm working with Zurb Foundation 6 and always tend to have two separate (and reoccurring) issues with the TopBar when it comes to navigation items. PROBLEM 1 The first issue, in the first example, is whenever I use whitespace in navigation items…
jwflalamp
  • 21
  • 3
1
vote
0 answers

Breakpoints not working on IntelliJ Ultimate

I am new to IntelliJ and I am trying to set up environment. I use latest version of IntelliJ and Tomcat. When I make an api request using Postman, the breakpoints on IntelliJ are not being hit. I have configured Tomcat locally and when I run the…
HSAR
  • 139
  • 1
  • 2
  • 12
1
vote
1 answer

How to write the DABR register of PowerPc in assembly language?

I need to find out what overwrote a global variable on my PowerPC/Linux accidentally, using the DABR register. What's the instruction that writes the DABR register? Is that instruction allowed to be executed in the userland?
xiaokaoy
  • 1,608
  • 3
  • 15
  • 27
1
vote
0 answers

Modifying hardware breakpoint(debug registers) at kernel space

I am trying to modify hardware breakpoints(x86 debug register) to set different addresses over iterations at kernel space(LKM). To modify the HW-breakpoint, I am disabling the perf event and setting the attr.bp_addr and re-enabling the event. I can…
Proy
  • 336
  • 2
  • 13
1
vote
2 answers

Can I make Visual Studio stay where it is in the code on breakpoint hit?

When I have a code file open and a breakpoint hits, Visual Studio automatically switches the open page to the corresponding file and places the cursor on the corresponding line. This is quite annoying in my present use case where I'm looking at-on…
XenoChrist
  • 309
  • 1
  • 3
  • 11
1
vote
2 answers

Visual Studio 2008 viewing dialog after breakpoint hit

I am building a C++ MFC application that creates modal dialog boxes, one at a time, while hiding the parent dialog. I wish to view the newly created modal dialogs when a breakpoint is hit when debugging in Visual Studio. However, anytime a…
mike
1
vote
0 answers

Temporarily change bootstrap 3 navbar collapse breakpoint using css

Have successfully implemented the stackoverflow post, found below, on how to change the breakpoint of bootstrap navbars: Bootstrap 3 Navbar Collapse However...I am trying to figure out how to change the collapsing behavior of one specific navbar on…
user1455083
  • 91
  • 3
  • 12
1
vote
1 answer

Breakpoint stop and shows wrong window in Xcode 8

I've added breakpoint in ViewDidLoad but when code execute and stop on breakpoint then it shows wrong window (Thread Window) instead of in Code. showing thread window I've Xcode 8.3.3 and I think this may be some issue in setting or may be…
Aleem
  • 3,173
  • 5
  • 33
  • 71
1
vote
2 answers

Why only breakpoints tied to lines, rather than some set of state?

Why is it that breakpoints are always tied to lines, and optionally to state? Why can't we have breakpoints that are tied solely to state or state changes, and not to lines? How does this relate to breakpointing on a whole class? We can typically…
Tim Barrass
  • 4,813
  • 2
  • 29
  • 55
1
vote
0 answers

Python GDB: Alternate for 'continue' of breakpoint

The situation is: I've defined a series of breakpoints(say, 3 breakpoints), and when gdb is set with 'continue' waiting for any 1 of the 3 BPs, it would hit any one depending on other conditionals I set. Problem is: When there are conditions that…
VGilla
  • 11
  • 2
1
vote
1 answer

Bootstrap 2-Col Format

I want to create a 2-col 6/6 section. The form is responsive but when i try to add contact-links section outside of contact-form it doesn't work. What is the correct way to format it in bootstrap? contact-form section (floated to left)…
7O07Y7
  • 519
  • 2
  • 6
  • 18
1
vote
0 answers

How to debug "incorrect checksum for freed object" error in Xcode?

I'm currently testing my application using a Right-To-Left language setting in Xcode and everytime I start the application I'm getting the error below. malloc: *** error for object 0x1013819e8: incorrect checksum for freed object - object was…
Mike Nathas
  • 1,247
  • 2
  • 11
  • 29
1
vote
1 answer

Data Breakpoints by Variable Name

Is there a simple way to define a breakpoint, in Visual C++ 2005, that will pause the program whenever a certain value changes? I found Data Breakpoints, but those require a memory address, and provide no simple way to tie that to a variable.
Andrei Krotkov
  • 5,556
  • 3
  • 33
  • 36
1
vote
1 answer

netbeans php - cannot get breakpoints to work

I have read and tried what I've found yet I cannot get it to work, it just keeps on hanging at "Waiting for connection (netbeans-xdebug)" when starting debugging. I do have xdebug installed (I am using wamp) and I've actually managed to get…
Vojislav Kovacevic
  • 1,385
  • 2
  • 17
  • 28
1
vote
2 answers

NetBeans debugger doesn't stop at breakpoint

I'm running a test case in debug mode on a new installation of Netbeans 8.2 with a break point on a myId field. @Test public void testCreateDocumentSecurityNullRequest() throws Exception { final Integer myId = 1; myRequest…
mdo123
  • 1,757
  • 3
  • 16
  • 34
1 2 3
99
100