#2954: System.Process.terminateProcess sends SIGTERM rather than SIGKILL on unix
-----------------------------+----------------------------------------------
Reporter: guest | Owner:
Type: bug | Status: new
Priority: normal | Component: libraries/process
Version: 6.10.1 | Severity: normal
Keywords: | Testcase:
Os: Unknown/Multiple | Architecture: Unknown/Multiple
-----------------------------+----------------------------------------------
The documentation says
{{{ [...] On Unix systems, terminateProcess sends the process the SIGKILL
signal. [...]}}}
but in cbits/runProcess.c we have
{{{
int
terminateProcess (ProcHandle handle)
{
return (kill(handle, SIGTERM) == 0);
}
}}}
--
Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/2954>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler_______________________________________________
Glasgow-haskell-bugs mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs