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
The process keeps running when it's send SIGINT or SIGTERM. This was introduced between 0.7.17 and 0.7.18.
import vibe.d; shared static this() { runTask({while (true) yield();}); }
The text was updated successfully, but these errors were encountered:
Seems to be related to the busy yield loop. I'd expect yield to query the st_term flag.
yield
Sorry, something went wrong.
dfc9d6a
Always check exit flag while processing yield()ed tasks. Fixes vibe-d…
45a7472
…#720.
No branches or pull requests
The process keeps running when it's send SIGINT or SIGTERM.
This was introduced between 0.7.17 and 0.7.18.
The text was updated successfully, but these errors were encountered: