From 67b915a5dd52a05f8030cd9edc005effd9c8eea5 Mon Sep 17 00:00:00 2001 From: bellard Date: Wed, 31 Mar 2004 23:37:16 +0000 Subject: win32 port (initial patch by kazu) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@692 c046a42c-6fe2-441c-8c8c-71466251a162 --- monitor.c | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) (limited to 'monitor.c') diff --git a/monitor.c b/monitor.c index 8c016a8ac8..1aabd3ddd5 100644 --- a/monitor.c +++ b/monitor.c @@ -21,25 +21,6 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "cpu.h" #include "vl.h" //#define DEBUG @@ -311,6 +292,7 @@ static void do_cont(int argc, const char **argv) vm_start(); } +#ifdef CONFIG_GDBSTUB static void do_gdbserver(int argc, const char **argv) { int port; @@ -324,6 +306,7 @@ static void do_gdbserver(int argc, const char **argv) qemu_printf("Waiting gdb connection on port %d\n", port); } } +#endif static term_cmd_t term_cmds[] = { { "help|?", do_help, @@ -348,7 +331,9 @@ static term_cmd_t term_cmds[] = { "filename", "restore the whole virtual machine state from 'filename'" }, { "stop", do_stop, "", "stop emulation", }, { "c|cont", do_cont, "", "resume emulation", }, +#ifdef CONFIG_GDBSTUB { "gdbserver", do_gdbserver, "[port]", "start gdbserver session (default port=1234)", }, +#endif { NULL, NULL, }, }; -- cgit 1.4.1