blob: f53d3bd1e54c65672fa8a10490c4fdadd12106cd [file] [log] [blame]
Andrew Geisslerd5838332022-05-27 11:33:10 -05001From bc3b1f6aacf2d8fe66b022fbfcf28cd82c76e52f Mon Sep 17 00:00:00 2001
Andrew Geissler595f6302022-01-24 19:11:47 +00002From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 29 Nov 2018 18:00:23 -0800
Andrew Geisslerd5838332022-05-27 11:33:10 -05004Subject: [PATCH 9/9] gdbserver ctrl-c handling
Andrew Geissler595f6302022-01-24 19:11:47 +00005
6This problem was created by the upstream commit 78708b7c8c
7After applying the commit, it will send SIGINT to the process
8group(-signal_pid).
9But if we use gdbserver send SIGINT, and the attached process is not a
10process
11group leader, then the "kill (-signal_pid, SIGINT)" returns error and
12fails to
13interrupt the attached process.
14
15Upstream-Status: Submitted
16[https://sourceware.org/bugzilla/show_bug.cgi?id=18945]
17
18Author: Josh Gao
19Signed-off-by: Zhixiong Chi <zhixiong.chi@windriver.com>
20Signed-off-by: Khem Raj <raj.khem@gmail.com>
21---
22 gdbserver/linux-low.cc | 2 +-
23 1 file changed, 1 insertion(+), 1 deletion(-)
24
25diff --git a/gdbserver/linux-low.cc b/gdbserver/linux-low.cc
Andrew Geisslerd5838332022-05-27 11:33:10 -050026index 7726a4a0c36..f750e074a03 100644
Andrew Geissler595f6302022-01-24 19:11:47 +000027--- a/gdbserver/linux-low.cc
28+++ b/gdbserver/linux-low.cc
Andrew Geisslerd5838332022-05-27 11:33:10 -050029@@ -5496,7 +5496,7 @@ linux_process_target::request_interrupt ()
Andrew Geissler595f6302022-01-24 19:11:47 +000030 {
31 /* Send a SIGINT to the process group. This acts just like the user
32 typed a ^C on the controlling terminal. */
33- ::kill (-signal_pid, SIGINT);
34+ ::kill (signal_pid, SIGINT);
35 }
36
37 bool
38--
Andrew Geisslerd5838332022-05-27 11:33:10 -0500392.36.1
Andrew Geissler595f6302022-01-24 19:11:47 +000040