]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/sys_common/condvar.rs
SGX target: implement synchronization primitives and threading
[rust.git] / src / libstd / sys_common / condvar.rs
index b6f29dd5fc3d3184f6a528fcb36f70b64b3f1051..16bf0803a8dfee293a0c6e20b45ffb87d908aa90 100644 (file)
@@ -25,6 +25,7 @@ impl Condvar {
     ///
     /// Behavior is undefined if the condition variable is moved after it is
     /// first used with any of the functions below.
+    #[unstable(feature = "sys_internals", issue = "0")] // FIXME: min_const_fn
     pub const fn new() -> Condvar { Condvar(imp::Condvar::new()) }
 
     /// Prepares the condition variable for use.