[Python-checkins] r46816 - python/branches/release24-maint/Tools/buildbot/kill_python.c

martin.v.loewis python-checkins at python.org
Sat Jun 10 10:07:25 CEST 2006


Author: martin.v.loewis
Date: Sat Jun 10 10:07:25 2006
New Revision: 46816

Modified:
   python/branches/release24-maint/Tools/buildbot/kill_python.c
Log:
Add build\\python.exe to the list of programs to be killed.


Modified: python/branches/release24-maint/Tools/buildbot/kill_python.c
==============================================================================
--- python/branches/release24-maint/Tools/buildbot/kill_python.c	(original)
+++ python/branches/release24-maint/Tools/buildbot/kill_python.c	Sat Jun 10 10:07:25 2006
@@ -42,7 +42,8 @@
 
 		_strlwr(path);
 		/* printf("%s\n", path); */
-		if (strstr(path, "build\\pcbuild\\python_d.exe") != NULL) {
+		if ((strstr(path, "build\\pcbuild\\python_d.exe") != NULL) ||
+		    (strstr(path, "build\\python.exe") != NULL)) {
 			printf("Terminating %s (pid %d)\n", path, pids[i]);
 			if (!TerminateProcess(hProcess, 1)) {
 				printf("Termination failed: %d\n", GetLastError());


More information about the Python-checkins mailing list