#[allow(unused_macros)]
macro_rules! impl_shared_rwlock {
($name: ident => $typ: ty) => {
#[derive(Debug, ::ocaml_gen::CustomType)]
pub struct $name(pub ::std::sync::Arc<::std::sync::RwLock<$typ>>);
impl $name {
extern "C" fn caml_pointer_finalize(v: ::ocaml::Raw) {
unsafe {
let v: ::ocaml::Pointer<Self> = v.as_pointer();
v.drop_in_place();
}
}
extern "C" fn caml_pointer_compare(_: ::ocaml::Raw, _: ::ocaml::Raw) -> i32 {
0
}
pub fn new(x: $typ) -> Self {
Self(::std::sync::Arc::new(::std::sync::RwLock::new(x)))
}
}
::ocaml::custom!($name {
finalize: $name::caml_pointer_finalize,
compare: $name::caml_pointer_compare,
});
unsafe impl<'a> ::ocaml::FromValue<'a> for $name {
fn from_value(value: ::ocaml::Value) -> Self {
let x: ::ocaml::Pointer<Self> = ::ocaml::FromValue::from_value(value);
Self(x.as_ref().0.clone())
}
}
impl ::core::ops::Deref for $name {
type Target = ::std::sync::Arc<::std::sync::RwLock<$typ>>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
};
}