We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Doc suggestion: indicate that to simulate an infinite sleep, the usual Haskell idiom will not do
sleepForever = forever (threadDelay maxBound)
It could be written like this instead, since dejafu (correctly) does not perform (inaccurate, unreliable) deadlock detection like the GHC runtime:
sleepForever = newEmptyMVar >>= takeMVar
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Doc suggestion: indicate that to simulate an infinite sleep, the usual Haskell idiom will not do
It could be written like this instead, since dejafu (correctly) does not perform (inaccurate, unreliable) deadlock detection like the GHC runtime:
The text was updated successfully, but these errors were encountered: