mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 13:22:11 +00:00
10 lines
270 B
Python
Executable File
10 lines
270 B
Python
Executable File
import os
|
|
def kill_subprocess(pid):
|
|
cmd = 'TASKKILL /PID ' + str(pid) + ' /T /F'
|
|
print "Timeout, killing subprocess:\n" + cmd
|
|
os.popen(cmd)
|
|
|
|
import win32api, win32con
|
|
win32api.SetErrorMode( win32con.SEM_NOGPFAULTERRORBOX | win32con.SEM_FAILCRITICALERRORS )
|
|
|