Re: Viewing data
Re: Viewing data
- Subject: Re: Viewing data
- From: Chris Espinosa <email@hidden>
- Date: Wed, 25 Feb 2004 21:36:13 -0800
On Feb 25, 2004, at 12:46 PM, David Catmull wrote:
Is there an equivalent in XCode to CodeWarrior's "View Memory"
command? I need to see the contents of a buffer, given the pointer.
Not at the moment. But as ith most things in Xcode, you can do this at
the command line of gdb while debugging in Xcode. Open the gdb window
(or drawer) and issue the x (eXamine) command. For example,
x /20b myPtr
and it will dump the text of the memory dump into the drawer. You can
view it there or copy and paste it into some other window.
Chris
_______________________________________________
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.
References: | |
| >Viewing data (From: David Catmull <email@hidden>) |