summaryrefslogtreecommitdiff
path: root/src/mutex
AgeCommit message (Collapse)Author
2025-03-12Add unwind handling for scoped locksMica White
2025-03-09Finish testing and fixingMica White
2025-02-28Scoped lock APIBotahamec
2025-02-05Tests and optimizationBotahamec
2025-01-12More unit testsBotahamec
2025-01-05Remove silly lifetime from Mutex::try_lockBotahamec
2024-12-26DocumentationMica White
2024-12-26CommentingMica White
2024-12-26Rename kill to poisonMica White
2024-12-26Remove unnecessary genericsMica White
2024-12-26Implement common traitsMica White
2024-12-25as_mut re-organizationMica White
2024-12-25Move some logic into the Sharable traitMica White
2024-12-25try_lock returns a ResultMica White
2024-12-23Remove scopeguardMica White
The scopeguard crate was being used for its `defer_on_unwind` macro. The problem was that it runs even if the runtime was already panicking. There aren't any changes to the macro which could have fixed this. I instead wrote my own function to check for a specific panicking closure.
2024-12-23Utilize mutex deathMica White
2024-12-21Implement lock death, but without any usagesBotahamec
2024-12-20Fix clippy issuesBotahamec
2024-12-01Unit testingMica White
2024-05-23CommentsBotahamec
2024-05-22DocumentationBotahamec
2024-05-22Implemented necessary traitsBotahamec
2024-03-13Lockable overhaulMica White
2024-03-12Name changeMica White
2024-03-11More trait bound fixesMica White
2024-03-11Further fixes to trait boundsMica White
2024-03-11Fix trait boundsMica White
2024-03-11DocumentationMica White
2024-03-10implement DebugMica White
2024-03-10More reorganizationMica White
2024-03-10ReorganizationMica White