2018-08-30 01:33:38 -05:00
|
|
|
// Just instantiate some data structures to make sure we got all their foreign items covered.
|
|
|
|
// Requires full MIR on Windows.
|
2018-08-23 12:28:48 -05:00
|
|
|
|
2020-01-27 21:49:06 -06:00
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
2020-01-28 21:07:09 -06:00
|
|
|
use std::sync::{Mutex, RwLock, TryLockError};
|
2018-08-23 12:28:48 -05:00
|
|
|
|
2020-01-27 21:49:06 -06:00
|
|
|
extern crate libc;
|
|
|
|
|
2018-08-23 12:28:48 -05:00
|
|
|
fn main() {
|
2020-01-28 21:07:09 -06:00
|
|
|
let m = Mutex::new(0);
|
2020-01-27 21:49:06 -06:00
|
|
|
{
|
|
|
|
let _guard = m.lock();
|
2020-01-28 21:07:09 -06:00
|
|
|
assert!(m.try_lock().unwrap_err().would_block());
|
2020-01-27 21:49:06 -06:00
|
|
|
}
|
|
|
|
drop(m.try_lock().unwrap());
|
2018-08-23 12:28:48 -05:00
|
|
|
drop(m);
|
|
|
|
|
2019-06-30 09:45:41 -05:00
|
|
|
#[cfg(not(target_os = "windows"))] // TODO: implement RwLock on Windows
|
2018-08-30 02:20:08 -05:00
|
|
|
{
|
2020-01-28 21:07:09 -06:00
|
|
|
let rw = RwLock::new(0);
|
2020-01-27 21:49:06 -06:00
|
|
|
{
|
|
|
|
let _read_guard = rw.read().unwrap();
|
|
|
|
drop(rw.read().unwrap());
|
|
|
|
drop(rw.try_read().unwrap());
|
2020-01-28 21:07:09 -06:00
|
|
|
assert!(rw.try_write().unwrap_err().would_block());
|
2020-01-27 21:49:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
let _write_guard = rw.write().unwrap();
|
2020-01-28 21:07:09 -06:00
|
|
|
assert!(rw.try_read().unwrap_err().would_block());
|
|
|
|
assert!(rw.try_write().unwrap_err().would_block());
|
2020-01-27 21:49:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// need to go a layer deeper and test the behavior of libc functions, because
|
|
|
|
// std::sys::unix::rwlock::RWLock keeps track of write_locked and num_readers
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let mut mutex: libc::pthread_mutex_t = std::mem::zeroed();
|
|
|
|
assert_eq!(libc::pthread_mutex_init(&mut mutex as *mut _, std::ptr::null_mut()), 0);
|
|
|
|
assert_eq!(libc::pthread_mutex_lock(&mut mutex as *mut _), 0);
|
|
|
|
assert_eq!(libc::pthread_mutex_trylock(&mut mutex as *mut _), libc::EBUSY);
|
|
|
|
assert_eq!(libc::pthread_mutex_unlock(&mut mutex as *mut _), 0);
|
|
|
|
assert_eq!(libc::pthread_mutex_trylock(&mut mutex as *mut _), 0);
|
|
|
|
assert_eq!(libc::pthread_mutex_unlock(&mut mutex as *mut _), 0);
|
|
|
|
assert_eq!(libc::pthread_mutex_destroy(&mut mutex as *mut _), 0);
|
|
|
|
}
|
|
|
|
|
2020-01-28 21:07:09 -06:00
|
|
|
let rw = std::cell::UnsafeCell::new(libc::PTHREAD_RWLOCK_INITIALIZER);
|
2020-01-27 21:49:06 -06:00
|
|
|
unsafe {
|
2020-01-28 21:07:09 -06:00
|
|
|
assert_eq!(libc::pthread_rwlock_rdlock(rw.get()), 0);
|
|
|
|
assert_eq!(libc::pthread_rwlock_rdlock(rw.get()), 0);
|
|
|
|
assert_eq!(libc::pthread_rwlock_unlock(rw.get()), 0);
|
|
|
|
assert_eq!(libc::pthread_rwlock_tryrdlock(rw.get()), 0);
|
|
|
|
assert_eq!(libc::pthread_rwlock_unlock(rw.get()), 0);
|
|
|
|
assert_eq!(libc::pthread_rwlock_trywrlock(rw.get()), libc::EBUSY);
|
|
|
|
assert_eq!(libc::pthread_rwlock_unlock(rw.get()), 0);
|
|
|
|
|
|
|
|
assert_eq!(libc::pthread_rwlock_wrlock(rw.get()), 0);
|
|
|
|
assert_eq!(libc::pthread_rwlock_tryrdlock(rw.get()), libc::EBUSY);
|
|
|
|
assert_eq!(libc::pthread_rwlock_trywrlock(rw.get()), libc::EBUSY);
|
|
|
|
assert_eq!(libc::pthread_rwlock_unlock(rw.get()), 0);
|
2020-01-27 21:49:06 -06:00
|
|
|
|
2020-01-28 21:07:09 -06:00
|
|
|
assert_eq!(libc::pthread_rwlock_destroy(rw.get()), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-27 21:49:06 -06:00
|
|
|
|
2020-01-28 21:07:09 -06:00
|
|
|
trait TryLockErrorExt<T> {
|
|
|
|
fn would_block(&self) -> bool;
|
|
|
|
}
|
2020-01-27 21:49:06 -06:00
|
|
|
|
2020-01-28 21:07:09 -06:00
|
|
|
impl<T> TryLockErrorExt<T> for TryLockError<T> {
|
|
|
|
fn would_block(&self) -> bool {
|
|
|
|
match self {
|
|
|
|
TryLockError::WouldBlock => true,
|
|
|
|
TryLockError::Poisoned(_) => false,
|
2020-01-27 21:49:06 -06:00
|
|
|
}
|
2018-08-30 02:20:08 -05:00
|
|
|
}
|
2018-08-23 12:28:48 -05:00
|
|
|
}
|