Changeset - adcfbe0fb453
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 14 years ago 2011-07-01 16:25:20
marcin@python-works.com
fixes #218 os.kill patch for windows was missing sig param
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/pidlock.py
Show inline comments
 
@@ -11,7 +11,7 @@ from rhodecode import __platform__, PLAT
 
if __platform__ in PLATFORM_WIN:
 
    import ctypes
 

	
 
    def kill(pid):
 
    def kill(pid, sig):
 
        """kill function for Win32"""
 
        kernel32 = ctypes.windll.kernel32
 
        handle = kernel32.OpenProcess(1, 0, pid)
0 comments (0 inline, 0 general)