You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LLVM has a thread_local specifier, for fast thread-local data. This could be exposed with a #[thread_local] attribute.
It will still be necessary for #[thread_local] static mut to be unsafe, because a borrow would have a 'static lifetime and freezing wouldn't really be possible...