-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the devel/gdb package to version 13.2 * Remove the upstreamed patch 001-Add-support-for-readline-8.2.patch * Adjust 130-gdb-ctrl-c.patch to upstream changes Signed-off-by: Hannu Nyman <[email protected]>
- Loading branch information
1 parent
a7a94bc
commit f79de8e
Showing
4 changed files
with
15 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 0 additions & 31 deletions
31
package/devel/gdb/patches/001-Add-support-for-readline-8.2.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,12 +24,12 @@ Signed-off-by: Khem Raj <[email protected]> | |
|
||
--- a/gdbserver/linux-low.cc | ||
+++ b/gdbserver/linux-low.cc | ||
@@ -5496,7 +5496,7 @@ linux_process_target::request_interrupt | ||
@@ -5467,7 +5467,7 @@ linux_process_target::request_interrupt | ||
{ | ||
/* Send a SIGINT to the process group. This acts just like the user | ||
typed a ^C on the controlling terminal. */ | ||
- ::kill (-signal_pid, SIGINT); | ||
+ ::kill (signal_pid, SIGINT); | ||
} | ||
|
||
bool | ||
- int res = ::kill (-signal_pid, SIGINT); | ||
+ int res = ::kill (signal_pid, SIGINT); | ||
if (res == -1) | ||
warning (_("Sending SIGINT to process group of pid %ld failed: %s"), | ||
signal_pid, safe_strerror (errno)); |