Fix braino
authorIan Lynagh <igloo@earth.li>
Wed, 4 Apr 2007 14:45:08 +0000 (14:45 +0000)
committerIan Lynagh <igloo@earth.li>
Wed, 4 Apr 2007 14:45:08 +0000 (14:45 +0000)
System/Posix/Signals.hs

index 962526d..2af259a 100644 (file)
@@ -281,7 +281,7 @@ signalProcessGroup sig pgid
   = throwErrnoIfMinus1_ "signalProcessGroup" (c_killpg (fromIntegral pgid) sig)
 
 foreign import ccall unsafe "killpg"
-  c_killpg :: CInt -> CInt -> IO CInt
+  c_killpg :: CPid -> CInt -> IO CInt
 
 -- | @raiseSignal int@ calls @kill@ to signal the current process
 --   with interrupt signal @int@.