Eric Pouech : winedbg: Added implementation of qSupported request.

Alexandre Julliard julliard at winehq.org
Thu May 1 06:38:54 CDT 2008


Module: wine
Branch: master
Commit: 5d90e60ed5e515060f20416e582b6d42bc36853b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5d90e60ed5e515060f20416e582b6d42bc36853b

Author: Eric Pouech <eric.pouech at orange.fr>
Date:   Wed Apr 30 21:28:13 2008 +0200

winedbg: Added implementation of qSupported request.

---

 programs/winedbg/gdbproxy.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/programs/winedbg/gdbproxy.c b/programs/winedbg/gdbproxy.c
index 0f95056..a47f9ca 100644
--- a/programs/winedbg/gdbproxy.c
+++ b/programs/winedbg/gdbproxy.c
@@ -1766,6 +1766,12 @@ static enum packet_return packet_query(struct gdb_context* gdbctx)
     case 'S':
         if (strncmp(gdbctx->in_packet, "Symbol::", gdbctx->in_packet_len) == 0)
             return packet_ok;
+        if (strncmp(gdbctx->in_packet, "Supported", gdbctx->in_packet_len) == 0)
+        {
+            packet_reply_open(gdbctx);
+            packet_reply_close(gdbctx);
+            return packet_done;
+        }
         break;
     case 'T':
         if (gdbctx->in_packet_len > 15 &&




More information about the wine-cvs mailing list