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
axns 开启 thread_local feature 之后,每次调用 new_thread_local 函数应该创建一个属于这个名称空间的独立的资源库,但是由于这个函数直接对内存进行了拷贝,而 AxResource 内部又是以 Arc 进行的存储,导致所有的 namespace 其实都指向了同一个位置,并没有达到 "Each thread can have its own namespace" 的目的。
new_thread_local
AxResource
Arc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
axns 开启 thread_local feature 之后,每次调用
new_thread_local
函数应该创建一个属于这个名称空间的独立的资源库,但是由于这个函数直接对内存进行了拷贝,而AxResource
内部又是以Arc
进行的存储,导致所有的 namespace 其实都指向了同一个位置,并没有达到 "Each thread can have its own namespace" 的目的。The text was updated successfully, but these errors were encountered: