re: memory changed break points
re: memory changed break points
- Subject: re: memory changed break points
- From: George Warner <email@hidden>
- Date: Mon, 28 Jun 2004 18:53:33 -0700
On Mon, 28 Jun 2004 19:33:40 +1200, Mark <email@hidden> wrote:
> How do you force a break if a specified memory location changes?
Break before you hit the code that uses the variable you want to watch and
then in the console window (in xcode) type:
(gdb) watch myVar
(gdb)
You can then continue your program and any code that writes over myVar will
force a break in Xcode.
--
Enjoy,
George Warner,
Schizophrenic Optimization Scientist
Apple Developer Technical Support (DTS)
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.