diff options
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r-- | gdb/remote-sim.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index 7c21009..ba9695f 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -35,6 +35,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "callback.h" #include "remote-sim.h" #include "remote-utils.h" +#include "command.h" /* Prototypes */ @@ -691,6 +692,10 @@ gdbsim_wait (pid, status) should be fixed. */ status->value.sig = target_signal_from_host (sigrc); break; + case sim_running: + case sim_polling: + /* FIXME: Is this correct? */ + break; } return inferior_pid; |