blob: 2c963d36510e6dfb5a9773bc6cfa21ae2fab5651 [file] [log] [blame]
//@ignore-target-windows: No libc on Windows
fn main() {
let rw = std::cell::UnsafeCell::new(libc::PTHREAD_RWLOCK_INITIALIZER);
unsafe {
assert_eq!(libc::pthread_rwlock_wrlock(rw.get()), 0);
libc::pthread_rwlock_wrlock(rw.get()); //~ ERROR: deadlock
}
}