Disassemble the vAttach packet.

llvm-svn: 172871
This commit is contained in:
Greg Clayton 2013-01-18 23:30:12 +00:00
parent b609a26355
commit e0d5323734
1 changed files with 13 additions and 0 deletions

View File

@ -1237,6 +1237,10 @@ sub dump_extended_cmd
{
dump_extended_continue_cmd(splice(@_,5));
}
elsif (join('', @_[0..7]) eq 'vAttach;')
{
dump_attach_command (splice(@_,8));
}
elsif (join('', @_[0..11]) eq 'vAttachWait;')
{
dump_attach_wait_command (splice(@_,12));
@ -1269,6 +1273,15 @@ sub dump_attach_wait_command
}
#----------------------------------------------------------------------
# 'vAttach' command
#----------------------------------------------------------------------
sub dump_attach_command
{
printf("attach ( pid = %i )", get_hex(\@_));
$extended_rsp_callback = \&dump_stop_reply_packet;
}
#----------------------------------------------------------------------
# 'vCont' command
#----------------------------------------------------------------------