Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add getPid #79

Merged
merged 1 commit into from
Aug 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/System/Process/Typed.hs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ module System.Process.Typed
, checkExitCode
, checkExitCodeSTM

-- ** Process ID
, getPid

-- ** Process streams
, getStdin
, getStdout
Expand All @@ -121,6 +124,7 @@ module System.Process.Typed
-- * Re-exports
, ExitCode (..)
, P.StdStream (..)
, P.Pid

-- * Unsafe functions
, unsafeProcessHandle
Expand Down Expand Up @@ -641,6 +645,17 @@ checkExitCodeSTM p = do
, eceStderr = L.empty
}

-- | Returns the PID (process ID) of a subprocess.
--
-- 'Nothing' is returned if the underlying 'P.ProcessHandle' was already closed.
-- Otherwise a PID is returned that remains valid as long as the handle is
-- open. The operating system may reuse the PID as soon as the last handle to
-- the process is closed.
--
-- @since 0.2.12.0
getPid :: Process stdin stdout stderr -> IO (Maybe P.Pid)
getPid = P.getPid . pHandle

-- | Internal
clearStreams :: ProcessConfig stdin stdout stderr -> ProcessConfig () () ()
clearStreams pc = pc
Expand Down
Loading