Files
rust/library/std/src
Dylan DPC b183ef2068 Rollup merge of #77648 - fusion-engineering-forks:static-mutex, r=dtolnay
Static mutex is static

StaticMutex is only ever used with as a static (as the name already suggests). So it doesn't have to be generic over a lifetime, but can simply assume 'static.

This 'static lifetime guarantees the object is never moved, so this is no longer a manually checked requirement for unsafe calls to lock().

@rustbot modify labels: +T-libs +A-concurrency +C-cleanup
2020-10-16 02:10:15 +02:00
..
2020-10-06 22:13:15 +00:00
2020-09-02 17:38:21 -04:00
2020-09-28 14:51:03 -04:00
2020-09-02 17:37:40 -04:00
2020-09-04 14:00:09 -07:00
2020-09-28 14:51:03 -04:00
2020-09-02 17:37:40 -04:00
2020-09-12 14:00:38 +02:00
2020-08-22 20:23:50 -07:00
2020-09-26 18:58:38 -07:00