Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make create_context return the real type.
[simgrid.git] / src / kernel / context / ContextRaw.hpp
index 82ff446..7d56296 100644 (file)
@@ -1,63 +1,48 @@
-/* Copyright (c) 2009-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2009-2019. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#ifndef SIMGRID_SIMIX_BOOST_CONTEXT_HPP
-#define SIMGRID_SIMIX_BOOST_CONTEXT_HPP
+#ifndef SIMGRID_SIMIX_RAW_CONTEXT_HPP
+#define SIMGRID_SIMIX_RAW_CONTEXT_HPP
 
+#include <atomic>
+#include <cstdint>
 #include <functional>
+#include <vector>
 
-#include "Context.hpp"
-#include "src/internal_config.h"
-#include "src/simix/smx_private.hpp"
+#include <xbt/parmap.hpp>
+
+#include "src/kernel/context/ContextSwapped.hpp"
 
 namespace simgrid {
 namespace kernel {
 namespace context {
 
-class RawContext;
-class RawContextFactory;
-
 /** @brief Fast context switching inspired from SystemV ucontexts.
   *
   * The main difference to the System V context is that Raw Contexts are much faster because they don't
   * preserve the signal mask when switching. This saves a system call (at least on Linux) on each context switch.
   */
-class RawContext : public Context {
-private:
-  void* stack_ = nullptr;
-  /** pointer to top the stack stack */
-  void* stack_top_ = nullptr;
-
+class RawContext : public SwappedContext {
 public:
-  friend class RawContextFactory;
-  RawContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process);
-  ~RawContext() override;
+  RawContext(std::function<void()>&& code, actor::ActorImpl* actor, SwappedContextFactory* factory);
 
-  static void wrapper(void* arg);
-  void stop() override;
-  void suspend() override;
-  void resume();
+  void swap_into(SwappedContext* to) override;
 
 private:
-  void suspend_serial();
-  void suspend_parallel();
-  void resume_serial();
-  void resume_parallel();
+  /** pointer to top the stack stack */
+  void* stack_top_ = nullptr;
+
+  static void wrapper(RawContext* context);
 };
 
-class RawContextFactory : public ContextFactory {
+class RawContextFactory : public SwappedContextFactory {
 public:
-  RawContextFactory();
-  ~RawContextFactory() override;
-  RawContext* create_context(std::function<void()> code, void_pfn_smxprocess_t cleanup, smx_actor_t process) override;
-  void run_all() override;
-
-private:
-  void run_all_serial();
-  void run_all_parallel();
+  RawContext* create_context(std::function<void()>&& code, actor::ActorImpl* actor) override;
 };
-}}} // namespace
+} // namespace context
+} // namespace kernel
+} // namespace simgrid
 
 #endif