Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / bindings / java / JavaContext.hpp
diff --git a/src/bindings/java/JavaContext.hpp b/src/bindings/java/JavaContext.hpp
deleted file mode 100644 (file)
index 0a07f01..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-/* Context switching within the JVM.                                        */
-
-/* Copyright (c) 2009-2018. 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_JAVA_JAVA_CONTEXT_HPP
-#define SIMGRID_JAVA_JAVA_CONTEXT_HPP
-
-#include <functional>
-#include <jni.h>
-
-#include "simgrid/simix.h"
-#include "src/kernel/context/ContextThread.hpp"
-#include "src/simix/smx_private.hpp"
-#include "xbt/xbt_os_thread.h"
-
-#include "jmsg.hpp"
-
-namespace simgrid {
-namespace kernel {
-namespace context {
-
-class JavaContext;
-class JavacontextFactory;
-
-class JavaContext : public simgrid::kernel::context::SerialThreadContext {
-public:
-  // The java process instance bound with the msg process structure:
-  jobject jprocess_ = nullptr;
-  // JNI interface pointer associated to this thread:
-  JNIEnv* jenv_           = nullptr;
-
-  friend class JavaContextFactory;
-  JavaContext(std::function<void()> code,
-          void_pfn_smxprocess_t cleanup_func,
-          smx_actor_t process);
-
-  void start_hook() override;
-  void stop() override;
-};
-
-class JavaContextFactory : public simgrid::kernel::context::ContextFactory {
-public:
-  JavaContextFactory();
-  ~JavaContextFactory() override;
-  JavaContext* self() override;
-  JavaContext* create_context(std::function<void()> code,
-    void_pfn_smxprocess_t, smx_actor_t process) override;
-  void run_all() override;
-};
-
-XBT_PRIVATE simgrid::kernel::context::ContextFactory* java_factory();
-XBT_PRIVATE void java_main_jprocess(jobject process);
-
-}}} // namespace simgrid::kernel::context
-
-#endif                          /* !_XBT_CONTEXT_JAVA_H */