Re: Remote debugging
Re: Remote debugging
- Subject: Re: Remote debugging
- From: Jonas Maebe <email@hidden>
- Date: Thu, 26 May 2005 15:24:19 +0200
On 26 mei 2005, at 15:17, Anshul Makkar wrote:
step-mode on. But then also if I press 's' for step in it just shows
the function name.
Actually when I press s , control goes to next instruction , but
instead of showing the disassembled code it just shows the name of the
function .
What can be the problem,
That there is no debug information available for the function.
how can I show the disassembled code instruction by instruction .
display/1i $pc
To turn it off later:
undisplay 1
(or whatever display number was assigned to the display command).
To simply print the disassembly of the the current function:
disassemble
To print the instructions in a particular range of memory:
disassemble start_address stop_address
or
x/10i start_address
(to print 10 instructions, with the first one at "start")
Jonas
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Darwin-kernel mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden