X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d535c50c617ba838b99de4bd251a6ac076774d00..e816186fdeaf53fa5abf6886f157c499e09c4622:/src/bindings/java/JavaContext.cpp diff --git a/src/bindings/java/JavaContext.cpp b/src/bindings/java/JavaContext.cpp index 5fe1c0cfab..7cc00a21ac 100644 --- a/src/bindings/java/JavaContext.cpp +++ b/src/bindings/java/JavaContext.cpp @@ -1,6 +1,6 @@ /* Context switching within the JVM. */ -/* Copyright (c) 2009-2018. 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. */ @@ -34,11 +34,6 @@ JavaContextFactory::JavaContextFactory(): ContextFactory("JavaContextFactory") JavaContextFactory::~JavaContextFactory()=default; -JavaContext* JavaContextFactory::self() -{ - return static_cast(xbt_os_thread_get_extra_data()); -} - JavaContext* JavaContextFactory::create_context(std::function code, void_pfn_smxprocess_t cleanup_fun, smx_actor_t actor) { @@ -58,7 +53,7 @@ JavaContext::JavaContext(std::function code, void_pfn_smxprocess_t clean void JavaContext::start_hook() { - xbt_os_thread_set_extra_data(this); // We need to attach it also for maestro, in contrary to our ancestor + Context::set_current(this); // We need to attach it also for maestro, in contrary to our ancestor //Attach the thread to the JVM JNIEnv *env; @@ -113,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); } }