diff options
| author | Peter Maydell | 2011-09-06 15:15:50 +0200 |
|---|---|---|
| committer | Riku Voipio | 2011-09-09 09:46:58 +0200 |
| commit | ff7a981affbbc4f19f6f92143a3ddff90a1363fe (patch) | |
| tree | 038a82fa76650daf4186d88c6eb5169f6c370505 /linux-user | |
| parent | linux-user: Implement new ARM 64 bit cmpxchg kernel helper (diff) | |
| download | qemu-ff7a981affbbc4f19f6f92143a3ddff90a1363fe.tar.gz qemu-ff7a981affbbc4f19f6f92143a3ddff90a1363fe.tar.xz qemu-ff7a981affbbc4f19f6f92143a3ddff90a1363fe.zip | |
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>
Diffstat (limited to 'linux-user')
| -rw-r--r-- | linux-user/main.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 25cb4ddf36..8910d2c494 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -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); |
