From 76c8c0902cbdc87d8059d2c9bef8be390c8180ff Mon Sep 17 00:00:00 2001 From: Conrad Meyer Date: Thu, 22 Aug 2019 00:19:14 +0000 Subject: [PATCH] gdb(4): Include thread in Target Halt Reason This saves a round trip of the gdb remote inferior attempting to find the thread id of the halted thread. Sponsored by: Dell EMC Isilon --- sys/gdb/gdb_main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys/gdb/gdb_main.c b/sys/gdb/gdb_main.c index 62c06880735..ed1b8a24534 100644 --- a/sys/gdb/gdb_main.c +++ b/sys/gdb/gdb_main.c @@ -198,8 +198,11 @@ gdb_trap(int type, int code) /* printf("GDB: got '%s'\n", gdb_rxp); */ switch (gdb_rx_char()) { case '?': /* Last signal. */ - gdb_tx_begin('S'); + gdb_tx_begin('T'); gdb_tx_hex(gdb_cpu_signal(type, code), 2); + gdb_tx_str("thread:"); + gdb_tx_varhex((long)kdb_thread->td_tid); + gdb_tx_char(';'); gdb_tx_end(); break; case 'c': { /* Continue. */