-
Notifications
You must be signed in to change notification settings - Fork 19
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
How would one use dejafu
with safe-exceptions
or unliftio
?
#298
Comments
Though if you've got any examples where dejafu doesn't work, I'd be interested to see them.
forkIO :: MonadUnliftIO m => m () -> m ThreadId
forkIO m = withRunInIO $ \run -> C.forkIO $ run m Where that
I'm not sure what you mean. |
Thanks for clarifying For |
You could certainly make a type which is an instance of both |
Those libs are getting some traction. I wonder if it is possible to run dejafu against those? Also, would it be able to take into account the different behavior of exception handling primitives (regarding using
uninterruptibleMask
in cleanup for example)?The text was updated successfully, but these errors were encountered: