What I am looking for is a simple function of type:
alive :: ThreadID -> IO Bool
This is not possible with the standard base libraries as far as I know, but you can use the GHC specific API to get a thread's status:
base
import GHC.Conc alive :: ThreadID -> IO Bool alive = fmap (== ThreadRunning) . threadStatus
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
172 times
active