rust/library/std
bors ed33e408c5 Auto merge of #115753 - tgross35:threadinfo-refactor, r=thomcc
Refactor `thread_info` to remove the `RefCell`

`thread_info` currently uses `RefCell`-based initialization. Refactor this to use `OnceCell` instead which is more performant and better suits the needs of one-time initialization.

This is nobody's bottleneck but OnceCell checks are a single `cmp` vs. `RefCell<Option>` needing runtime logic
2023-09-20 09:55:53 +00:00
..
benches
src Auto merge of #115753 - tgross35:threadinfo-refactor, r=thomcc 2023-09-20 09:55:53 +00:00
tests Add data race test to std::env::{get, set} 2023-08-20 21:50:45 +02:00
build.rs libstd: add xous to libstd 2023-08-22 08:20:04 +08:00
Cargo.toml Rollup merge of #115839 - Dirreke:bump-libc, r=dtolnay 2023-09-19 11:35:51 +02:00