diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-04-17 10:19:25 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-04-17 10:19:25 (GMT) |
commit | 5b3bf0dd5e36945015b4b698c6d2f8e6084ee213 (patch) | |
tree | ca3cc8bce9315c768c33334eedb7aff05fbe2a0d /Tools | |
parent | 2d12372e325ca595ee8a3a6cbbe2d63606acfb4e (diff) | |
download | cpython-5b3bf0dd5e36945015b4b698c6d2f8e6084ee213.zip cpython-5b3bf0dd5e36945015b4b698c6d2f8e6084ee213.tar.gz cpython-5b3bf0dd5e36945015b4b698c6d2f8e6084ee213.tar.bz2 |
Try some tracing
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/kill_python.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/buildbot/kill_python.c b/Tools/buildbot/kill_python.c index 46a14b7..f84df1d 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 +} |