Kill Hang Process
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Sir, how is it possible to terminate a hanged application from another VC++ application ? C.R.Naik
-
Note that in some instances it's actually impossible to kill a process, even on NT! Some kernel calls are implemented in a way that they can hang (around) in kernel mode almost indefinitely. Trying to kill such a process is futile - it simply won't die. Also note that this design (though I'd personally call it a very serious flaw) prohibits you from even logging out - Windows wants to kill the process, which can't be killed. The only way to get out of this mess (except for waiting 365 years or so) is, really, a hardware reset.