diff --git a/src/lib.rs b/src/lib.rs index 4914e4a..767ed4b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -389,6 +389,10 @@ impl Producer { /// Returns `true` if the corresponding [`Consumer`] has been destroyed. /// + /// Note that since Rust version 1.74.0, this is not synchronizing with the consumer thread + /// anymore, see . + /// In a future version of `rtrb`, the synchronizing behavior might be restored. + /// /// # Examples /// /// ``` @@ -629,6 +633,10 @@ impl Consumer { /// Returns `true` if the corresponding [`Producer`] has been destroyed. /// + /// Note that since Rust version 1.74.0, this is not synchronizing with the producer thread + /// anymore, see . + /// In a future version of `rtrb`, the synchronizing behavior might be restored. + /// /// # Examples /// /// ```