Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
merge ParallelUContext into SwappedContext, that can now run parallel or sequential
[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
33   void swap_into(SwappedContext* to) override;
34
35 private:
36   ucontext_t uc_;         /* the ucontext that executes the code */
37
38 #if HAVE_SANITIZER_ADDRESS_FIBER_SUPPORT
39   const void* asan_stack_ = nullptr;
40   size_t asan_stack_size_ = 0;
41   UContext* asan_ctx_     = nullptr;
42   bool asan_stop_         = false;
43 #endif
44
45   static void smx_ctx_sysv_wrapper(int, int);
46   static void make_ctx(ucontext_t* ucp, void (*func)(int, int), UContext* arg);
47 };
48
49 class UContextFactory : public SwappedContextFactory {
50 public:
51   UContextFactory() : SwappedContextFactory("UContextFactory") {}
52
53   Context* create_context(std::function<void()> code, void_pfn_smxprocess_t cleanup, smx_actor_t process) override;
54 };
55 }}} // namespace
56
57 #endif