gdb: double packet size

This commit is contained in:
TuxSH
2019-04-28 02:14:31 +02:00
parent d357db25f2
commit 2927bd5aa3
2 changed files with 7 additions and 7 deletions

View File

@@ -39,12 +39,12 @@
#define MAX_DEBUG_THREAD 127
#define MAX_BREAKPOINT 256
#define MAX_TIO_OPEN_FILE 64
#define MAX_TIO_OPEN_FILE 32
// 512+24 is the ideal size as IDA will try to read exactly 0x100 bytes at a time. Add 4 to this, for $#<checksum>, see below.
// IDA seems to want additional bytes as well.
// 1024 is fine enough to put all regs in the 'T' stop reply packets
#define GDB_BUF_LEN 1024
#define GDB_BUF_LEN 2048
#define GDB_HANDLER(name) GDB_Handle##name
#define GDB_QUERY_HANDLER(name) GDB_HANDLER(Query##name)
@@ -171,7 +171,7 @@ typedef struct GDBContext
u32 threadListDataPos;
char memoryOsInfoXmlData[0x800];
char processesOsInfoXmlData[0x2000];
char processesOsInfoXmlData[0x1800];
} GDBContext;
typedef int (*GDBCommandHandler)(GDBContext *ctx);