Skip to content

Commit 1d10679

Browse files
committed
---
yaml --- r: 170810 b: refs/heads/try c: fedbde6 h: refs/heads/master v: v3
1 parent 53b579a commit 1d10679

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 73a25f55ad748b4d3516417c711b99ce446591af
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 5b3cd3900ceda838f5798c30ab96ceb41f962534
5-
refs/heads/try: b2ab5d7658435f8710acc0b0a99ce858af36bd9a
5+
refs/heads/try: fedbde66239d4a7a7551938975d4e3894d778332
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/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)