2014-06-11 08:34:28 +00:00
|
|
|
# NOTE: win32 support is currently experimental, and not recommended
|
|
|
|
# for production use.
|
|
|
|
|
|
|
|
|
2017-08-07 16:00:36 +00:00
|
|
|
from __future__ import absolute_import, division, print_function
|
2016-09-30 22:40:12 +00:00
|
|
|
import ctypes # type: ignore
|
|
|
|
import ctypes.wintypes # type: ignore
|
2014-06-11 08:34:28 +00:00
|
|
|
|
|
|
|
# See: http://msdn.microsoft.com/en-us/library/ms724935(VS.85).aspx
|
|
|
|
SetHandleInformation = ctypes.windll.kernel32.SetHandleInformation
|
|
|
|
SetHandleInformation.argtypes = (ctypes.wintypes.HANDLE, ctypes.wintypes.DWORD, ctypes.wintypes.DWORD)
|
|
|
|
SetHandleInformation.restype = ctypes.wintypes.BOOL
|
|
|
|
|
|
|
|
HANDLE_FLAG_INHERIT = 0x00000001
|
|
|
|
|
|
|
|
|
|
|
|
def set_close_exec(fd):
|
|
|
|
success = SetHandleInformation(fd, HANDLE_FLAG_INHERIT, 0)
|
|
|
|
if not success:
|
2016-09-30 22:40:12 +00:00
|
|
|
raise ctypes.WinError()
|