summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Tools/buildbot/kill_python.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/buildbot/kill_python.c b/Tools/buildbot/kill_python.c
index 46a14b78a2..f84df1d5a3 100644
--- a/Tools/buildbot/kill_python.c
+++ b/Tools/buildbot/kill_python.c
@@ -13,6 +13,7 @@ int main()
return 1;
}
num_processes = cbNeeded/sizeof(pids[0]);
+ printf("%d processes\n", num_processes);
for (i = 0; i < num_processes; i++) {
HANDLE hProcess;
char path[MAX_PATH];
@@ -41,7 +42,8 @@ int main()
}
_strlwr(path);
- /* printf("%s\n", path); */
+ printf("%s\n", path);
+ fflush(stdout);
if (strstr(path, "build\\pcbuild\\python_d.exe") != NULL) {
printf("Terminating %s (pid %d)\n", path, pids[i]);
if (!TerminateProcess(hProcess, 1)) {
@@ -53,4 +55,4 @@ int main()
CloseHandle(hProcess);
}
-} \ No newline at end of file
+}