Re: gdb doesn't notice when a target resumes
Andrew Burgess via Gdb <[email protected]>
| Newsgroups | gmane.comp.gdb.devel |
|---|---|
| Message-ID | <[email protected]> |
Tim Newsome <[email protected]> writes: > In a setup like this: > gdb --- OpenOCD --- hardware target > > I can download a program, debug, everything is fine. Let's say we're halted > somewhere. > Now something happens that causes the hardware target to be running again > and no longer halted. OpenOCD notices quickly because it polls the target. > But gdb doesn't ever notice that the target was resumed. There doesn't > appear to be a notification packet > <https://sourceware.org/gdb/onlinedocs/gdb/Notification-Packets.html#Notification-Packets> > for > OpenOCD to even communicate to gdb that the target has resumed. > > Am I missing something? Have people attempted to tackle this problem? The following is my understanding, others might have a better understanding that contradicts what I say here. GDB expects to be the one driving the state of the target. It's not expected that the target will just resume execution without GDB being the one to set the target resumed. And that makes sense I think. GDB is primarily a debugger. If, as a user, I stop the target in order to examine the state, and the hardware suddenly resumes execution, that's a pretty poor user experience I think. Depending on what the "something" is that sets the target running, you might have more luck if that "something" could instead tell GDB to resume the target. Otherwise you'd need to change GDB I think. Maybe non-stop mode could support the concept of the targtet asynchronously resuming... but I suspect it would not be a trivial addition. Thanks, Andrew