Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
3k views

watchpoint in GDB

If I set a watchpoint for a variable local to the current scope, it will be auto deleted when going out of the scope. Is there any way to set it once and keep it auto alive whenever entering the same ...
7
votes
1answer
1k views

iphone Xcode 3.1.4 3.1.2 SDK, watchpoints don't work?

If I try to set a watchpoint I get a gdb error: " can't clear hardware watchpoints without the 'Z2' (write-watchpoint) packet " Then it seems to corrupt the device (on restarting the device it ...
3
votes
5answers
714 views

Linux C debugging library to detect memory corruptions

When working sometimes ago on an embedded system with a simple MMU, I used to program dynamically this MMU to detect memory corruptions. For instance, at some moment at runtime, the foo variable was ...
3
votes
2answers
2k views

GDB hardware watchpoint very slow - why?

On a large C application, I have set a hardware watchpoint on a memory address as follows: (gdb) watch *0x12F5D58 Hardware watchpoint 3: *0x12F5D58 As you can see, it's a hardware watchpoint, not ...
2
votes
1answer
62 views

How to know what operator at which line changes the value of the variable in TCL

Sometimes you can't understand when the variable value gets changed. And it is necessary to find the line by puting a watchpoint on the variable. How this can be done? Can TCL trace command be usefull ...
2
votes
1answer
356 views

GDB: Watchpoint a fixed address

For my current embedded application I am trying to put GDB watch point at a fixed memory address. As an example, my application updates the following address: 0x10793ad0. In order to be sure which ...
2
votes
0answers
264 views

Freescale CodeWarrior : Register watchpoint on HCS08

I need to break the debugging when I-bit of SR (global interrupt mask) changes it's state. Freescale CodeWarrior 6.1 MCU: HCS08
1
vote
2answers
38 views

Is is possible to set a gdb watchpoint programatically?

I want to set a watchpoint (break on hardware write) temporarily in my C++ program to find memory corruption. I've seen all the ways to do it manually through gdb, but I would like to actually set ...
1
vote
1answer
48 views

How to monitor resources needed to set watchpoints in gdb?

On x86 GDB uses some special hardware resources (debug registers?) to set watchpoints. In some situations, when there is not enough of that resources, GDB will set the watchpoint, but it won't work. ...
1
vote
2answers
121 views

Cannot find over-released object debugging on device

I have a rather large app which works in the simulator but creates in an over-released object scenario on the iPhone device. NSzombies would seem to be the route to go except that the object is not ...
1
vote
1answer
60 views

Prevent gdb from stopping at watchpoints

file main.c: #include <stdio.h> int main() { int i; for (i=0; i<30 ;i++) { printf ("%d\n", i); } return 0; } In gdb, I usually set a breakpoint, then specify a ...
1
vote
0answers
138 views

Snow Leopard crashes after gdb attempts to access an address using watchpoints

I am debugging a binary (assembly only) using GDB 7.1 compiled via MacPorts for Snow Leopard. I am interested in a specific address that I found using find gdb command. So that, it is a valid address ...
1
vote
2answers
606 views

gdb watch pointer that is not valid yet

I have the following code: #include <stdlib.h> #include <stdio.h> #define SIZE 100 int* arr; main() { int i; arr = (int*)malloc(SIZE*sizeof(int)); if (arr == NULL) { ...
1
vote
1answer
121 views

How to set watchpoints via procfs in Linux?

I'm trying to build a debugger-like program under Linux (Ubuntu) and I've run into some problems. From what I've heard, the /proc vfs provides mechanisms to create watchpoints, but I can't seem to ...
1
vote
2answers
626 views

How to set up gdb watchpoints in a program consisting of many files in C++?

I am trying to set up a watchpoint to monitor a variable in a package consisting of many C++ files. There are many files abc.cpp qwe.cpp .. xyz.cpp and so on I want to monitor a variable 'temp' in ...
0
votes
1answer
39 views

Why watchpoint doesn't effect?

I am studying the watchpoint of GDB. I write a simple test code as following: int main(int argc, char **argv) { int x = 30; int y = 10; x = y; return 0; } I build it via gcc -g -o ...
0
votes
1answer
34 views

hardware watch points

can anybody please tell me how do the GDB watch points work and can the similar kind of functionality be implemented to harness byte level access at defined loactions. Thanks, Kapil
0
votes
1answer
57 views

Setting a watch point in GDB

I am operating a huge code base and want to monitor a value of a particular variable (which is buried deep down inside one of the files)especially when it gets set to zero. 1) Variable does not ...
0
votes
1answer
50 views

Cannot set watchpoint in GDB

I am doing debugging and wanted to check the place where the value of the variable changes .For this I tried setting a watch point by saying something like watch 'structure->somefunc.getvalue()' which ...
0
votes
1answer
66 views

How to set a watchpoint on a view's frame height

In my iOS program, my controller's view frame height (self.view.frame.size.height) is changing somewhere between it's creation and when my gesture recognizer is called after a tap. The view was 276 ...
0
votes
0answers
109 views

gdb, break vs tbreak and watchpoint

Can anyone tell me what's the difference between break and tbreak regarding watchpoints ? A have a simple test code : #include <stdlib.h> #include <stdio.h> int main(int argc, char ...