Copyright | (c) The University of Glasgow 2002 |
---|---|
License | BSD-style (see the file libraries/base/LICENSE) |
Maintainer | [email protected] |
Stability | provisional |
Portability | non-portable (requires POSIX) |
Safe Haskell | Safe |
Language | Haskell2010 |
POSIX process support. See also the System.Cmd and System.Process modules in the process package.
forkProcess :: IO () -> IO ProcessID Source
forkProcess
corresponds to the POSIX fork
system call. The IO
action passed as an argument is executed in the child process; no other threads will be copied to the child process. On success, forkProcess
returns the child's ProcessID
to the parent process; in case of an error, an exception is thrown.
The exception masking state of the executed action is inherited (c.f. forkIO
), see also forkProcessWithUnmask
(since: 2.7.0.0).
forkProcess
comes with a giant warning: since any other running threads are not copied into the child process, it's easy to go wrong: e.g. by accessing some shared resource that was held by another thread in the parent.
forkProcessWithUnmask :: ((forall a. IO a -> IO a) -> IO ()) -> IO ProcessID Source
Variant of forkProcess
in the style of forkIOWithUnmask
.
Since: unix-2.7.0.0
:: FilePath | Command |
-> Bool | Search PATH? |
-> [String] | Arguments |
-> Maybe [(String, String)] | Environment |
-> IO a |
executeFile cmd args env
calls one of the execv*
family, depending on whether or not the current PATH is to be searched for the command, and whether or not an environment is provided to supersede the process's current environment. The basename (leading directory names suppressed) of the command is passed to execv*
as arg[0]
; the argument list passed to executeFile
therefore begins with arg[1]
.
exitImmediately :: ExitCode -> IO () Source
exitImmediately status
calls _exit
to terminate the process with the indicated exit status
. The operation never returns.
getProcessID :: IO ProcessID Source
getProcessID
calls getpid
to obtain the ProcessID
for the current process.
getParentProcessID :: IO ProcessID Source
getProcessID
calls getppid
to obtain the ProcessID
for the parent of the current process.
getProcessGroupID :: IO ProcessGroupID Source
getProcessGroupID
calls getpgrp
to obtain the ProcessGroupID
for the current process.
getProcessGroupIDOf :: ProcessID -> IO ProcessGroupID Source
getProcessGroupIDOf pid
calls getpgid
to obtain the ProcessGroupID
for process pid
.
createProcessGroupFor :: ProcessID -> IO ProcessGroupID Source
createProcessGroupFor pid
calls setpgid
to make process pid
a new process group leader.
joinProcessGroup :: ProcessGroupID -> IO () Source
joinProcessGroup pgid
calls setpgid
to set the ProcessGroupID
of the current process to pgid
.
setProcessGroupIDOf :: ProcessID -> ProcessGroupID -> IO () Source
setProcessGroupIDOf pid pgid
calls setpgid
to set the ProcessGroupIDOf
for process pid
to pgid
.
createSession :: IO ProcessGroupID Source
createSession
calls setsid
to create a new session with the current process as session leader.
data ProcessTimes Source
ProcessTimes | |
Fields |
getProcessTimes :: IO ProcessTimes Source
getProcessTimes
calls times
to obtain time-accounting information for the current process and its children.
getProcessPriority :: ProcessID -> IO Int Source
getProcessGroupPriority :: ProcessGroupID -> IO Int Source
getUserPriority :: UserID -> IO Int Source
setProcessPriority :: ProcessID -> Int -> IO () Source
setProcessGroupPriority :: ProcessGroupID -> Int -> IO () Source
setUserPriority :: UserID -> Int -> IO () Source
data ProcessStatus Source
The exit status of a process
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 |
Eq ProcessStatus | |
Defined in System.Posix.Process.Internals Methods(==) :: ProcessStatus -> ProcessStatus -> Bool (/=) :: ProcessStatus -> ProcessStatus -> Bool | |
Ord ProcessStatus | |
Defined in System.Posix.Process.Internals Methodscompare :: ProcessStatus -> ProcessStatus -> Ordering (<) :: ProcessStatus -> ProcessStatus -> Bool (<=) :: ProcessStatus -> ProcessStatus -> Bool (>) :: ProcessStatus -> ProcessStatus -> Bool (>=) :: ProcessStatus -> ProcessStatus -> Bool max :: ProcessStatus -> ProcessStatus -> ProcessStatus min :: ProcessStatus -> ProcessStatus -> ProcessStatus | |
Show ProcessStatus | |
Defined in System.Posix.Process.Internals MethodsshowsPrec :: Int -> ProcessStatus -> ShowS Source show :: ProcessStatus -> String Source showList :: [ProcessStatus] -> ShowS Source |
getProcessStatus :: Bool -> Bool -> ProcessID -> IO (Maybe ProcessStatus) Source
getProcessStatus blk stopped pid
calls waitpid
, returning Just tc
, the ProcessStatus
for process pid
if it is available, Nothing
otherwise. If blk
is False
, then WNOHANG
is set in the options for waitpid
, otherwise not. If stopped
is True
, then WUNTRACED
is set in the options for waitpid
, otherwise not.
getAnyProcessStatus :: Bool -> Bool -> IO (Maybe (ProcessID, ProcessStatus)) Source
getAnyProcessStatus blk stopped
calls waitpid
, returning Just (pid, tc)
, the ProcessID
and ProcessStatus
for any child process if a child process has exited, or Nothing
if there are child processes but none have exited. If there are no child processes, then getAnyProcessStatus
raises an isDoesNotExistError
exception.
If blk
is False
, then WNOHANG
is set in the options for waitpid
, otherwise not. If stopped
is True
, then WUNTRACED
is set in the options for waitpid
, otherwise not.
getGroupProcessStatus :: Bool -> Bool -> ProcessGroupID -> IO (Maybe (ProcessID, ProcessStatus)) Source
getGroupProcessStatus blk stopped pgid
calls waitpid
, returning Just (pid, tc)
, the ProcessID
and ProcessStatus
for any process in group pgid
if one is available, or Nothing
if there are child processes but none have exited. If there are no child processes, then getGroupProcessStatus
raises an isDoesNotExistError
exception.
If blk
is False
, then WNOHANG
is set in the options for waitpid
, otherwise not. If stopped
is True
, then WUNTRACED
is set in the options for waitpid
, otherwise not.
createProcessGroup :: ProcessID -> IO ProcessGroupID Source
Deprecated: This function is scheduled to be replaced by something different in the future, we therefore recommend that you do not use this version and use createProcessGroupFor
instead.
createProcessGroup pid
calls setpgid
to make process pid
a new process group leader. This function is currently deprecated, and might be changed to making the current process a new process group leader in future versions.
setProcessGroupID :: ProcessID -> ProcessGroupID -> IO () Source
Deprecated: This function is scheduled to be replaced by something different in the future, we therefore recommend that you do not use this version and use setProcessGroupIDOf
instead.
setProcessGroupID pid pgid
calls setpgid
to set the ProcessGroupID
for process pid
to pgid
. This function is currently deprecated, and might be changed to setting the ProcessGroupID
for the current process in future versions.
© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/8.8.3/docs/html/libraries/unix-2.7.2.2/System-Posix-Process.html