We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f50292 commit f9866f9Copy full SHA for f9866f9
src/libstd/sys/unix/rwlock.rs
@@ -46,7 +46,9 @@ impl RWLock {
46
}
47
panic!("rwlock read lock would result in deadlock");
48
} else {
49
- assert_eq!(r, 0);
+ // According to POSIX, for a properly initialized rwlock this can only
50
+ // return EAGAIN or EDEADLK or 0. We rely on that.
51
+ debug_assert_eq!(r, 0);
52
self.num_readers.fetch_add(1, Ordering::Relaxed);
53
54
@@ -83,7 +85,9 @@ impl RWLock {
83
85
84
86
panic!("rwlock write lock would result in deadlock");
87
88
89
+ // return EDEADLK or 0. We rely on that.
90
91
92
*self.write_locked.get() = true;
93
0 commit comments