Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / kernel / context / ContextRaw.hpp
1 /* Copyright (c) 2009-2019. 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_KERNEL_CONTEXT_RAW_CONTEXT_HPP
7 #define SIMGRID_KERNEL_CONTEXT_RAW_CONTEXT_HPP
8
9 #include <atomic>
10 #include <cstdint>
11 #include <functional>
12 #include <vector>
13
14 #include <xbt/parmap.hpp>
15
16 #include "src/kernel/context/ContextSwapped.hpp"
17
18 namespace simgrid {
19 namespace kernel {
20 namespace context {
21
22 /** @brief Fast context switching inspired from SystemV ucontexts.
23   *
24   * The main difference to the System V context is that Raw Contexts are much faster because they don't
25   * preserve the signal mask when switching. This saves a system call (at least on Linux) on each context switch.
26   */
27 class RawContext : public SwappedContext {
28 public:
29   RawContext(std::function<void()>&& code, actor::ActorImpl* actor, SwappedContextFactory* factory);
30
31   void swap_into(SwappedContext* to) override;
32
33 private:
34   /** pointer to top the stack stack */
35   void* stack_top_ = nullptr;
36
37   static void wrapper(RawContext* context);
38 };
39
40 class RawContextFactory : public SwappedContextFactory {
41 public:
42   RawContext* create_context(std::function<void()>&& code, actor::ActorImpl* actor) override;
43 };
44 } // namespace context
45 } // namespace kernel
46 } // namespace simgrid
47
48 #endif