Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Flag is useless (always true).
[simgrid.git] / src / bindings / java / JavaContext.hpp
index d0d6a4e..462f9a2 100644 (file)
@@ -1,6 +1,6 @@
 /* Context switching within the JVM.                                        */
 
-/* Copyright (c) 2009-2017. The SimGrid Team. All rights reserved.          */
+/* 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. */
 #include <jni.h>
 
 #include "simgrid/simix.h"
-#include "src/simix/smx_private.h"
+#include "src/simix/smx_private.hpp"
 #include "xbt/xbt_os_thread.h"
 
-#include "jmsg.h"
+#include "jmsg.hpp"
 
 namespace simgrid {
 namespace kernel {
@@ -35,7 +35,7 @@ public:
   xbt_os_sem_t begin = nullptr;
   // Semaphore used to schedule/unschedule the process:
   xbt_os_sem_t end = nullptr;
-public:
+
   friend class JavaContextFactory;
   JavaContext(std::function<void()> code,
           void_pfn_smxprocess_t cleanup_func,