Skip to content

Commit 2605c89

Browse files
committed
squash! kill: Handle Win32 console processes' children, too
kill: kill Win32 processes more gently This change is the equivalent to the change to the Ctrl+C handling we just made. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent d9c290c commit 2605c89

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

winsup/utils/kill.cc

+12-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ details. */
1717
#include <cygwin/version.h>
1818
#include <getopt.h>
1919
#include <limits.h>
20+
#include <cygwin/exit_process.h>
2021

2122
static char *prog_name;
2223

@@ -173,7 +174,17 @@ forcekill (int pid, int sig, int wait)
173174
if (!wait || WaitForSingleObject (h, 200) != WAIT_OBJECT_0)
174175
{
175176
if (sig == SIGINT || sig == SIGTERM)
176-
kill_process_tree (dwpid, sig);
177+
{
178+
HANDLE cur = GetCurrentProcess (), h2 = NULL;
179+
/* duplicate handle with access rights required for exit_process() */
180+
DuplicateHandle (cur, h, cur, &h2, PROCESS_CREATE_THREAD |
181+
PROCESS_QUERY_INFORMATION | PROCESS_VM_OPERATION |
182+
PROCESS_VM_WRITE | PROCESS_VM_READ |
183+
PROCESS_TERMINATE, FALSE, 0);
184+
exit_process (h2 ? h2 : h, 128 + sig);
185+
if (h2)
186+
CloseHandle(h2);
187+
}
177188
else if (sig && !TerminateProcess (h, sig << 8)
178189
&& WaitForSingleObject (h, 200) != WAIT_OBJECT_0)
179190
fprintf (stderr, "%s: couldn't kill pid %u, %u\n",

0 commit comments

Comments
 (0)