X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4d4f20d4287b144f73dae8195c5f2ba134b72e64..fae10815035e4d0d150ff5fdbb7aa8fe25448c57:/src/bindings/java/JavaContext.cpp?ds=sidebyside diff --git a/src/bindings/java/JavaContext.cpp b/src/bindings/java/JavaContext.cpp index 19f760108e..8460d04187 100644 --- a/src/bindings/java/JavaContext.cpp +++ b/src/bindings/java/JavaContext.cpp @@ -12,10 +12,12 @@ #include #include #include +#include #include "JavaContext.hpp" #include "jxbt_utilities.h" #include "xbt/dynar.h" #include "../../simix/smx_private.h" + extern JavaVM *__java_vm; XBT_LOG_NEW_DEFAULT_CATEGORY(jmsg, "MSG for Java(TM)"); @@ -80,12 +82,9 @@ JavaContext::JavaContext(std::function code, "Failed to create context #%d. You may want to switch to Java coroutines to increase your limits (error: %s)." "See the Install section of simgrid-java documentation (in doc/install.html) for more on coroutines.", thread_amount, ex.what()); - xbt_ex new_exception(str); + xbt_ex new_exception(XBT_THROW_POINT, str); new_exception.category = ex.category; new_exception.value = ex.value; - new_exception.file = __FILE__; - new_exception.line = __LINE__; - new_exception.func = __func__; std::throw_with_nested(std::move(new_exception)); } } else {