summaryrefslogtreecommitdiff
path: root/boost/context/fiber.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/context/fiber.hpp')
-rw-r--r--boost/context/fiber.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/boost/context/fiber.hpp b/boost/context/fiber.hpp
new file mode 100644
index 0000000000..ff1b79e2da
--- /dev/null
+++ b/boost/context/fiber.hpp
@@ -0,0 +1,13 @@
+
+// Copyright Oliver Kowalke 2017.
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+#if defined(BOOST_USE_UCONTEXT)
+#include <boost/context/fiber_ucontext.hpp>
+#elif defined(BOOST_USE_WINFIB)
+#include <boost/context/fiber_winfib.hpp>
+#else
+#include <boost/context/fiber_fcontext.hpp>
+#endif