Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ContextRaw: add header file with class definitions.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 22 Oct 2017 12:47:41 +0000 (14:47 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 22 Oct 2017 13:48:08 +0000 (15:48 +0200)
src/kernel/context/ContextRaw.cpp
src/kernel/context/ContextRaw.hpp [new file with mode: 0644]
tools/cmake/DefinePackages.cmake

index 9351c54..88082ab 100644 (file)
@@ -3,73 +3,14 @@
 /* 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. */
 
-#include "src/internal_config.h"
-
-#include "xbt/parmap.hpp"
+#include "ContextRaw.hpp"
 
 #include "mc/mc.h"
-#include "src/simix/smx_private.hpp"
+#include "src/internal_config.h"
+#include "xbt/parmap.hpp"
 
 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context);
 
-// ***** Class definitions
-
-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;
-
-public:
-  friend class RawContextFactory;
-  RawContext(std::function<void()> code,
-          void_pfn_smxprocess_t cleanup_func,
-          smx_actor_t process);
-  ~RawContext() override;
-
-  static void wrapper(void* arg);
-  void stop() override;
-  void suspend() override;
-  void resume();
-private:
-  void suspend_serial();
-  void suspend_parallel();
-  void resume_serial();
-  void resume_parallel();
-};
-
-class RawContextFactory : public ContextFactory {
-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();
-};
-
-ContextFactory* raw_factory()
-{
-  XBT_VERB("Using raw contexts. Because the glibc is just not good enough for us.");
-  return new RawContextFactory();
-}
-
-}}} // namespace
-
 // ***** Loads of static stuff
 
 #if HAVE_THREAD_CONTEXTS
@@ -447,4 +388,9 @@ void RawContext::resume_parallel()
 #endif
 }
 
+ContextFactory* raw_factory()
+{
+  XBT_VERB("Using raw contexts. Because the glibc is just not good enough for us.");
+  return new RawContextFactory();
+}
 }}}
diff --git a/src/kernel/context/ContextRaw.hpp b/src/kernel/context/ContextRaw.hpp
new file mode 100644 (file)
index 0000000..82ff446
--- /dev/null
@@ -0,0 +1,63 @@
+/* Copyright (c) 2009-2017. 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
+
+#include <functional>
+
+#include "Context.hpp"
+#include "src/internal_config.h"
+#include "src/simix/smx_private.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;
+
+public:
+  friend class RawContextFactory;
+  RawContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t process);
+  ~RawContext() override;
+
+  static void wrapper(void* arg);
+  void stop() override;
+  void suspend() override;
+  void resume();
+
+private:
+  void suspend_serial();
+  void suspend_parallel();
+  void resume_serial();
+  void resume_parallel();
+};
+
+class RawContextFactory : public ContextFactory {
+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();
+};
+}}} // namespace
+
+#endif
index 794398b..802efdd 100644 (file)
@@ -380,6 +380,7 @@ set(SIMIX_SRC
   src/kernel/context/Context.cpp
   src/kernel/context/Context.hpp
   src/kernel/context/ContextRaw.cpp
+  src/kernel/context/ContextRaw.hpp
   src/simix/smx_deployment.cpp
   src/simix/smx_environment.cpp
   src/simix/smx_global.cpp