how is the windows kill process works?
        Posted  
        
            by IttayD
        on Server Fault
        
        See other posts from Server Fault
        
            or by IttayD
        
        
        
        Published on 2010-06-14T20:27:33Z
        Indexed on 
            2010/06/14
            20:33 UTC
        
        
        Read the original article
        Hit count: 366
        
I'm unfamiliar with how processes are killed in Windows. In Linux, a "warm" kill sends a signal (15) and the process can handle by instantiating a signal handler it and a cold kill sends signal (9) which the OS handles killing the process by force.
What is the procedure in Windows? How can I send a "kill" to a process? How does the process handle it? Is there a cross-platform way of responding to a kill/close request?
© Server Fault or respective owner