Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix process_killall. Closes #186.
[simgrid.git] / src / kernel / context / ContextBoost.hpp
1 /* Copyright (c) 2015-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_SIMIX_BOOST_CONTEXT_HPP
7 #define SIMGRID_SIMIX_BOOST_CONTEXT_HPP
8
9 #include <boost/version.hpp>
10 #if BOOST_VERSION < 106100
11 #include <boost/context/fcontext.hpp>
12 #else
13 #include <boost/context/detail/fcontext.hpp>
14 #endif
15 #include <functional>
16 #include <vector>
17
18 #include <xbt/parmap.hpp>
19
20 #include <simgrid/simix.hpp>
21
22
23 namespace simgrid {
24 namespace kernel {
25 namespace context {
26
27 class BoostContext;
28 class BoostSerialContext;
29 class BoostParallelContext;
30 class BoostContextFactory;
31
32 /** @brief Userspace context switching implementation based on Boost.Context */
33 class BoostContext : public Context {
34 protected: // static
35   static bool parallel_;
36   static simgrid::xbt::Parmap<smx_actor_t>* parmap_;
37   static std::vector<BoostContext*> workers_context_;
38   static uintptr_t threads_working_;
39   static xbt_os_thread_key_t worker_id_key_;
40   static unsigned long process_index_;
41   static BoostContext* maestro_context_;
42
43 #if BOOST_VERSION < 105600
44   boost::context::fcontext_t* fc_ = nullptr;
45   typedef intptr_t ctx_arg_type;
46 #elif BOOST_VERSION < 106100
47   boost::context::fcontext_t fc_;
48   typedef intptr_t ctx_arg_type;
49 #else
50   boost::context::detail::fcontext_t fc_;
51   typedef boost::context::detail::transfer_t ctx_arg_type;
52 #endif
53   static void smx_ctx_boost_wrapper(ctx_arg_type);
54   static void smx_ctx_boost_jump_fcontext(BoostContext*, BoostContext*);
55
56 #if HAVE_SANITIZE_ADDRESS_FIBER_SUPPORT
57   const void* asan_stack_ = nullptr;
58   size_t asan_stack_size_ = 0;
59   bool asan_stop_         = false;
60 #endif
61
62   void* stack_ = nullptr;
63 public:
64   friend BoostContextFactory;
65   BoostContext(std::function<void()> code,
66           void_pfn_smxprocess_t cleanup_func,
67           smx_actor_t process);
68   ~BoostContext() override;
69   void stop() override;
70   virtual void resume();
71 private:
72   static void wrapper(int first, ...);
73 };
74
75 class BoostContextFactory : public ContextFactory {
76 public:
77   friend BoostContext;
78   friend BoostSerialContext;
79   friend BoostParallelContext;
80
81   BoostContextFactory();
82   ~BoostContextFactory() override;
83   Context* create_context(std::function<void()> code,
84     void_pfn_smxprocess_t, smx_actor_t process) override;
85   void run_all() override;
86 };
87
88 }}} // namespace
89
90 #endif