]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/fiber/mutex.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / fiber / mutex.hpp
index cce36b6d629c9e2bc58444981c80712a00637b8e..2291cf62bd17ef4ffbf8695fddec76b28fe7de81 100644 (file)
@@ -14,6 +14,7 @@
 #include <boost/fiber/context.hpp>
 #include <boost/fiber/detail/config.hpp>
 #include <boost/fiber/detail/spinlock.hpp>
+#include <boost/fiber/waker.hpp>
 
 #ifdef BOOST_HAS_ABI_HEADERS
 #  include BOOST_ABI_PREFIX
@@ -33,10 +34,8 @@ class BOOST_FIBERS_DECL mutex {
 private:
     friend class condition_variable;
 
-    using wait_queue_type = context::wait_queue_t;
-
     detail::spinlock            wait_queue_splk_{};
-    wait_queue_type             wait_queue_{};
+    wait_queue                  wait_queue_{};
     context                 *   owner_{ nullptr };
 
 public: