X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..3baaf982217fbc818965e8ed71c3ec91e96844d5:/src/bindings/java/JavaContext.cpp diff --git a/src/bindings/java/JavaContext.cpp b/src/bindings/java/JavaContext.cpp index 115bb0f49f..c8b6db532a 100644 --- a/src/bindings/java/JavaContext.cpp +++ b/src/bindings/java/JavaContext.cpp @@ -27,7 +27,7 @@ ContextFactory* java_factory() return new JavaContextFactory(); } -JavaContextFactory::JavaContextFactory(): ContextFactory("JavaContextFactory") +JavaContextFactory::JavaContextFactory() : ContextFactory() { xbt_binary_name = xbt_strdup("java"); // Used by the backtrace displayer } @@ -78,7 +78,7 @@ void JavaContext::stop() // (as the ones created for the VM migration). The Java exception will not be catched anywhere. // Bad things happen currently if these actors get killed, unfortunately. jxbt_throw_by_name(env, "org/simgrid/msg/ProcessKilledError", - std::string("Process ") + this->process()->get_cname() + " killed from file JavaContext.cpp"); + std::string("Process ") + this->get_actor()->get_cname() + " killed from file JavaContext.cpp"); // (remember that throwing a java exception from C does not break the C execution path. // Instead, it marks the exception to be raised when returning to the Java world and @@ -108,7 +108,6 @@ void JavaContext::stop() env->DeleteGlobalRef(this->jprocess_); XBT_ATTRIB_UNUSED jint error = __java_vm->DetachCurrentThread(); xbt_assert((error == JNI_OK), "The thread couldn't be detached."); - xbt_os_thread_exit(nullptr); } }