about summary refs log tree commit diff
path: root/library/std/src/sync/nonpoison/condvar.rs
AgeCommit message (Collapse)AuthorLines
2025-09-13fix Condvar::wait_timeout docsRalf Jung-5/+4
2025-08-23move `WaitTimeoutResult` up to `mod.rs`Connor Tsui-69/+1
Since `WaitTimeoutResult` is poison-agnostic, we want to use the same type for both variants of `Condvar`. Signed-off-by: Connor Tsui <connor.tsui20@gmail.com>
2025-08-23add `nonpoison::condvar` implementationConnor Tsui-0/+516
Adds the equivalent `nonpoison` types to the `poison::condvar` module. These types and implementations are gated under the `nonpoison_condvar` feature gate. Signed-off-by: Connor Tsui <connor.tsui20@gmail.com>