summaryrefslogtreecommitdiff
path: root/boost/coroutine/protected_stack_allocator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/coroutine/protected_stack_allocator.hpp')
-rw-r--r--boost/coroutine/protected_stack_allocator.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/boost/coroutine/protected_stack_allocator.hpp b/boost/coroutine/protected_stack_allocator.hpp
new file mode 100644
index 0000000000..268786fec4
--- /dev/null
+++ b/boost/coroutine/protected_stack_allocator.hpp
@@ -0,0 +1,13 @@
+
+// Copyright Oliver Kowalke 2009.
+// 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)
+
+#include <boost/config.hpp>
+
+#if defined(BOOST_WINDOWS)
+# include <boost/coroutine/windows/protected_stack_allocator.hpp>
+#else
+# include <boost/coroutine/posix/protected_stack_allocator.hpp>
+#endif