linux-user: Exit with an error if we couldn't set up gdbserver

If gdbserver_start() fails (usually because we couldn't bind to the
requested TCP port) then exit qemu rather than blithely continuing.
This brings the linux-user behaviour in to line with system mode.

Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
Peter Maydell 2011-09-06 14:15:50 +01:00 committed by Riku Voipio
parent 97cc75606a
commit ff7a981aff

View File

@ -3655,7 +3655,11 @@ int main(int argc, char **argv, char **envp)
#endif
if (gdbstub_port) {
gdbserver_start (gdbstub_port);
if (gdbserver_start(gdbstub_port) < 0) {
fprintf(stderr, "qemu: could not open gdbserver on port %d\n",
gdbstub_port);
exit(1);
}
gdb_handlesig(env, 0);
}
cpu_loop(env);