| Safe Haskell | Trustworthy | 
|---|---|
| Language | Haskell2010 | 
System.Posix.Process.Internals
Synopsis
- pPrPr_disableITimers :: IO ()
- c_execvpe :: CString -> Ptr CString -> Ptr CString -> IO CInt
- decipherWaitStatus :: CInt -> IO ProcessStatus
- data ProcessStatus
Documentation
pPrPr_disableITimers :: IO () #
decipherWaitStatus :: CInt -> IO ProcessStatus #
data ProcessStatus #
The exit status of a process
Constructors
| Exited ExitCode | the process exited by calling
  | 
| Terminated Signal Bool | the process was terminated by a
 signal, the  Since: unix-2.7.0.0 | 
| Stopped Signal | the process was stopped by a signal | 
Instances
| Show ProcessStatus # | |
| Defined in System.Posix.Process.Internals | |
| Eq ProcessStatus # | |
| Defined in System.Posix.Process.Internals Methods (==) :: ProcessStatus -> ProcessStatus -> Bool # (/=) :: ProcessStatus -> ProcessStatus -> Bool # | |
| Ord ProcessStatus # | |
| Defined in System.Posix.Process.Internals Methods compare :: ProcessStatus -> ProcessStatus -> Ordering # (<) :: ProcessStatus -> ProcessStatus -> Bool # (<=) :: ProcessStatus -> ProcessStatus -> Bool # (>) :: ProcessStatus -> ProcessStatus -> Bool # (>=) :: ProcessStatus -> ProcessStatus -> Bool # max :: ProcessStatus -> ProcessStatus -> ProcessStatus # min :: ProcessStatus -> ProcessStatus -> ProcessStatus # | |