Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bbdec21150d9def0e90eb4e104534410073bdade
[simgrid.git] / src / kernel / context / ContextUnix.hpp
1 /* Copyright (c) 2009-2018. 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_UNIX_CONTEXT_HPP
7 #define SIMGRID_SIMIX_UNIX_CONTEXT_HPP
8
9 #include <ucontext.h> /* context relative declarations */
10
11 #include <atomic>
12 #include <cstdint>
13 #include <functional>
14 #include <vector>
15
16 #include <simgrid/simix.hpp>
17 #include <xbt/parmap.hpp>
18 #include <xbt/xbt_os_thread.h>
19
20 #include "src/internal_config.h"
21 #include "src/kernel/context/ContextSwapped.hpp"
22
23 namespace simgrid {
24 namespace kernel {
25 namespace context {
26
27 class UContext : public SwappedContext {
28 public:
29   UContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process,
30            SwappedContextFactory* factory);
31   ~UContext() override;
32   void stop() override;
33
34   void swap_into(SwappedContext* to) override;
35
36 private:
37   ucontext_t uc_;         /* the ucontext that executes the code */
38
39 #if HAVE_SANITIZER_ADDRESS_FIBER_SUPPORT
40   const void* asan_stack_ = nullptr;
41   size_t asan_stack_size_ = 0;
42   UContext* asan_ctx_     = nullptr;
43   bool asan_stop_         = false;
44 #endif
45
46   static void smx_ctx_sysv_wrapper(int, int);
47   static void make_ctx(ucontext_t* ucp, void (*func)(int, int), UContext* arg);
48 };
49
50 class ParallelUContext : public UContext {
51 public:
52   ParallelUContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process,
53                    SwappedContextFactory* factory)
54       : UContext(std::move(code), cleanup_func, process, factory)
55   {
56   }
57   void suspend() override;
58   void resume() override;
59
60   static void run_all();
61 };
62
63 class UContextFactory : public SwappedContextFactory {
64 public:
65   UContextFactory();
66   ~UContextFactory() override;
67
68   Context* create_context(std::function<void()> code, void_pfn_smxprocess_t cleanup, smx_actor_t process) override;
69 };
70 }}} // namespace
71
72 #endif