File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: b2ab5d7658435f8710acc0b0a99ce858af36bd9a
2
+ refs/heads/master: fedbde66239d4a7a7551938975d4e3894d778332
Original file line number Diff line number Diff line change @@ -91,13 +91,13 @@ unsafe impl<T> Sync for RwLock<T> {}
91
91
/// unsafe { LOCK.destroy() } // free all resources
92
92
/// ```
93
93
#[ unstable = "may be merged with RwLock in the future" ]
94
- pub struct StaticRWLock {
94
+ pub struct StaticRwLock {
95
95
lock : sys:: RWLock ,
96
96
poison : poison:: Flag ,
97
97
}
98
98
99
- unsafe impl Send for StaticRWLock { }
100
- unsafe impl Sync for StaticRWLock { }
99
+ unsafe impl Send for StaticRwLock { }
100
+ unsafe impl Sync for StaticRwLock { }
101
101
102
102
/// Constant initialization for a statically-initialized rwlock.
103
103
#[ unstable = "may be merged with RwLock in the future" ]
@@ -238,7 +238,7 @@ struct Dummy(UnsafeCell<()>);
238
238
unsafe impl Sync for Dummy { }
239
239
static DUMMY : Dummy = Dummy ( UnsafeCell { value : ( ) } ) ;
240
240
241
- impl StaticRWLock {
241
+ impl StaticRwLock {
242
242
/// Locks this rwlock with shared read access, blocking the current thread
243
243
/// until it can be acquired.
244
244
///
You can’t perform that action at this time.
0 commit comments