summary refs log tree commit diff
path: root/src/libstd/sys_common/mutex.rs
AgeCommit message (Collapse)AuthorLines
2018-08-08avoid using the word 'initialized' to talk about that non-reentrant-capable ↵Ralf Jung-1/+3
state of the mutex
2018-08-06actually, reentrant uninitialized mutex acquisition is outright UBRalf Jung-3/+3
2018-08-06I think we have to strengthen Mutex::init UBRalf Jung-1/+1
2018-08-06clarify partially initialized Mutex issuesRalf Jung-0/+4
2018-06-17libstd: add an RAII utility for sys_common::mutex::MutexNODA, Kai-2/+24
Signed-off-by: NODA, Kai <nodakai@gmail.com>
2016-11-01std: Move sys_common to libstd/sys_commonBrian Anderson-0/+66
Make the directory structure reflect the module structure. I've always found the existing structure confusing.