X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..60037b3f9ba9d856ccebf7a2211b51b82f4a557a:/src/bindings/java/jmsg_vm.cpp diff --git a/src/bindings/java/jmsg_vm.cpp b/src/bindings/java/jmsg_vm.cpp index 3fa29e77a3..07f20e3d4a 100644 --- a/src/bindings/java/jmsg_vm.cpp +++ b/src/bindings/java/jmsg_vm.cpp @@ -10,6 +10,7 @@ #include "jxbt_utilities.hpp" #include "simgrid/Exception.hpp" #include "simgrid/plugins/live_migration.h" +#include "src/kernel/context/Context.hpp" #include "src/plugins/vm/VirtualMachineImpl.hpp" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(java); @@ -150,12 +151,9 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_VM_nativeMigration(JNIEnv* env, jobj { msg_vm_t vm = jvm_get_native(env,jvm); msg_host_t host = jhost_get_native(env, jhost); - try { - MSG_vm_migrate(vm,host); - } - catch(xbt_ex& e){ - XBT_VERB("CATCH EXCEPTION MIGRATION %s",e.what()); - jxbt_throw_host_failure(env, (char*)"during migration"); + if (not simgrid::ForcefulKillException::try_n_catch([&vm, &host]() { MSG_vm_migrate(vm, host); })) { + XBT_VERB("Caught exception during migration"); + jxbt_throw_host_failure(env, "during migration"); } } @@ -173,7 +171,6 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_VM_resume(JNIEnv *env, jobject jvm) JNIEXPORT jobject JNICALL Java_org_simgrid_msg_VM_getVMByName(JNIEnv* env, jclass cls, jstring jname) { - /* get the C string from the java string */ if (jname == nullptr) { jxbt_throw_null(env, "No VM can have a null name");