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
await_suspend需要判断mPrevious是否有效,否则在main()中创建的协程会恢复一个不存在的调用者。
await_suspend
mPrevious
main()
The text was updated successfully, but these errors were encountered:
不需要,因为在run_step中会将首个启动的协程的mPrevious设为noop_coroutine(),该协程是特殊的,执行没有任何效果,直接退出。
Sorry, something went wrong.
No branches or pull requests
await_suspend
需要判断mPrevious
是否有效,否则在main()
中创建的协程会恢复一个不存在的调用者。The text was updated successfully, but these errors were encountered: