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
Hello!
It looks like thread local context::active_ depends on another thread local - activation_record::current_rec.
Then it crashes
The text was updated successfully, but these errors were encountered:
on first access current_rec is intiialized with :
static detail::activation_record * main_rec() { thread_local static detail::activation_record rec; return & rec; }
thread_local detail::activation_record::ptr_t detail::activation_record::current_rec = main_rec();
and active_ on first access:
static context * main_context() { static thread_local context mc; static thread_local scheduler sched( & mc); mc.set_scheduler( & sched); return & mc; }
thread_local context * context::active_ = main_context();
Sorry, something went wrong.
Okay. But then https://github.com/olk/boost-fiber/blob/master/doc/overview.qbk#L108 should be changed to 1.60.
Merge pull request boostorg#67 from SSE4/clang_windows
4cbf241
- define asm sources for Clang on Windows
No branches or pull requests
Hello!
It looks like thread local context::active_ depends on another thread local - activation_record::current_rec.
Then it crashes
The text was updated successfully, but these errors were encountered: