File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
branches/batch/src/libstd/sync Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
29
29
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
30
30
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
- refs/heads/batch: b2ab5d7658435f8710acc0b0a99ce858af36bd9a
32
+ refs/heads/batch: fedbde66239d4a7a7551938975d4e3894d778332
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
34
refs/heads/beta: 496dc4eae7de9d14cd49511a9acfbf5f11ae6c3f
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
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