Imported Upstream version 1.63.0
[platform/upstream/boost.git] / libs / context / example / v2 / ontop_void.cpp
1
2 //          Copyright Oliver Kowalke 2014.
3 // Distributed under the Boost Software License, Version 1.0.
4 //    (See accompanying file LICENSE_1_0.txt or copy at
5 //          http://www.boost.org/LICENSE_1_0.txt)
6
7 #include <cstdlib>
8 #include <iostream>
9 #include <tuple>
10
11 #include <boost/context/all.hpp>
12
13 namespace ctx = boost::context;
14
15 ctx::execution_context< void > f1( ctx::execution_context< void > && ctx) {
16     std::cout << "f1: entered first time"  << std::endl;
17     ctx = ctx();
18     std::cout << "f1: entered second time" << std::endl;
19     ctx = ctx();
20     std::cout << "f1: entered third time" << std::endl;
21     return std::move( ctx);
22 }
23
24 void f2() {
25     std::cout << "f2: entered" << std::endl;
26 }
27
28 int main() {
29     ctx::execution_context< void > ctx( f1);
30     ctx = ctx();
31     std::cout << "f1: returned first time" << std::endl;
32     ctx = ctx();
33     std::cout << "f1: returned second time" << std::endl;
34     ctx = ctx( ctx::exec_ontop_arg, f2);
35     std::cout << "f1: returned third time" << std::endl;
36
37     std::cout << "main: done" << std::endl;
38
39     return EXIT_SUCCESS;
40 }