Skip to content

Commit aa3eafc

Browse files
committed
---
yaml --- r: 171309 b: refs/heads/batch c: fedbde6 h: refs/heads/master i: 171307: 62c599d v: v3
1 parent 70b450f commit aa3eafc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2929
refs/heads/issue-18208-method-dispatch-2: 9e1eae4fb9b6527315b4441cf8a0f5ca911d1671
3030
refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32-
refs/heads/batch: b2ab5d7658435f8710acc0b0a99ce858af36bd9a
32+
refs/heads/batch: fedbde66239d4a7a7551938975d4e3894d778332
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: 496dc4eae7de9d14cd49511a9acfbf5f11ae6c3f
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928

branches/batch/src/libstd/sync/rwlock.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ unsafe impl<T> Sync for RwLock<T> {}
9191
/// unsafe { LOCK.destroy() } // free all resources
9292
/// ```
9393
#[unstable = "may be merged with RwLock in the future"]
94-
pub struct StaticRWLock {
94+
pub struct StaticRwLock {
9595
lock: sys::RWLock,
9696
poison: poison::Flag,
9797
}
9898

99-
unsafe impl Send for StaticRWLock {}
100-
unsafe impl Sync for StaticRWLock {}
99+
unsafe impl Send for StaticRwLock {}
100+
unsafe impl Sync for StaticRwLock {}
101101

102102
/// Constant initialization for a statically-initialized rwlock.
103103
#[unstable = "may be merged with RwLock in the future"]
@@ -238,7 +238,7 @@ struct Dummy(UnsafeCell<()>);
238238
unsafe impl Sync for Dummy {}
239239
static DUMMY: Dummy = Dummy(UnsafeCell { value: () });
240240

241-
impl StaticRWLock {
241+
impl StaticRwLock {
242242
/// Locks this rwlock with shared read access, blocking the current thread
243243
/// until it can be acquired.
244244
///

0 commit comments

Comments
 (0)