Skip to content

Commit f9866f9

Browse files
committed
rely on rdlock/wrlock not returning anything but the specified error codes
1 parent 3f50292 commit f9866f9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/libstd/sys/unix/rwlock.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ impl RWLock {
4646
}
4747
panic!("rwlock read lock would result in deadlock");
4848
} else {
49-
assert_eq!(r, 0);
49+
// 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);
5052
self.num_readers.fetch_add(1, Ordering::Relaxed);
5153
}
5254
}
@@ -83,7 +85,9 @@ impl RWLock {
8385
}
8486
panic!("rwlock write lock would result in deadlock");
8587
} else {
86-
assert_eq!(r, 0);
88+
// According to POSIX, for a properly initialized rwlock this can only
89+
// return EDEADLK or 0. We rely on that.
90+
debug_assert_eq!(r, 0);
8791
}
8892
*self.write_locked.get() = true;
8993
}

0 commit comments

Comments
 (0)