This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

vCont packets for next and step


Hi All,

How does the gdb next and step work? I am seeing a problem where next only sends one vCont packet, similar to stepi though I was expecting a set of vCont packets to be sent similar to a step.

Thanks,
Kishore

next:
-----
Server received packet: [vCont;s:1]
Server Sending packet:  [S05]

stepi:
-----
Server received packet: [vCont;s:1;c]
Server Sending packet:  [S05]

step: 0x100010bc-0x100010cc
----------------------------
Server received packet: [vCont;s:1]
Server Sending packet:  [S05]
Server received packet: [vCont;s:1;c]
Server Sending packet:  [S05]
Server received packet: [vCont;s:1;c]
Server Sending packet:  [S05]
Server received packet: [vCont;s:1;c]
Server Sending packet:  [S05]
Server received packet: [vCont;s:1;c]
Server Sending packet:  [S05]


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]