about summary refs log tree commit diff
path: root/library/std/src/sys_common/remutex
AgeCommit message (Collapse)AuthorLines
2022-11-14std: move `ReentrantMutex` to `sync`joboet-60/+0
2022-09-03std: make `ReentrantMutex` movable and `const`; simplify `Stdout` initializationjoboet-27/+10
2021-08-22Fix more β€œa”/β€œan” typosFrank Steffahn-2/+2
2020-12-08Use Pin for the 'don't move' requirement of ReentrantMutex.Mara Bos-15/+20
The code in io::stdio before this change misused the ReentrantMutexes, by calling init() on them and moving them afterwards. Now that ReentrantMutex requires Pin for init(), this mistake is no longer easy to make.
2020-08-31std: move "mod tests/benches" to separate filesLzu Tao-0/+72
Also doing fmt inplace as requested.