From 53850a5976d9b95ad49bde00a5cf48e1be0f9508 Mon Sep 17 00:00:00 2001 From: TuxSH <1922548+TuxSH@users.noreply.github.com> Date: Mon, 3 Feb 2020 02:08:28 +0000 Subject: [PATCH] thermosphere: reduce gdb work buf to least acceptable limit --- thermosphere/src/gdb/defines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thermosphere/src/gdb/defines.h b/thermosphere/src/gdb/defines.h index 89dbd14ff..5b0ea4a14 100644 --- a/thermosphere/src/gdb/defines.h +++ b/thermosphere/src/gdb/defines.h @@ -31,7 +31,7 @@ // 1024 is fine enough to put all regs in the 'T' stop reply packets // Add 4 to this for the actual allocated size, for $#, see below. #define GDB_BUF_LEN 0x800 -#define GDB_WORK_BUF_LEN 0x2000 +#define GDB_WORK_BUF_LEN 0x1000 #define GDB_HANDLER(name) GDB_Handle##name #define GDB_QUERY_HANDLER(name) GDB_HANDLER(Query##name)