Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix getName issue - Adrien
authorAdrien Lebre <alebre@adsein.local>
Sun, 12 Oct 2014 15:49:57 +0000 (17:49 +0200)
committerAdrien Lebre <alebre@adsein.local>
Sun, 12 Oct 2014 15:49:57 +0000 (17:49 +0200)
src/bindings/java/smx_context_java.c

index 6a52403..29489d1 100644 (file)
@@ -12,6 +12,7 @@
 #include "smx_context_java.h"
 #include "jxbt_utilities.h"
 #include "xbt/dynar.h"
+#include "../../simix/smx_private.h"
 extern JavaVM *__java_vm;
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(jmsg, bindings, "MSG for Java(TM)");
@@ -153,12 +154,13 @@ void smx_ctx_java_stop(smx_context_t context)
   if (context->iwannadie) {
     context->iwannadie = 0;
     JNIEnv *env = get_current_thread_env();
-    XBT_DEBUG("Gonnal launch Killed Error");
+    XBT_DEBUG("Gonna launch Killed Error");
     // TODO Adrien, if the process has not been created at the java layer, why should we raise the exception/error at the java level (this happens
     // for instance during the migration process that creates at the C level two processes: one on the SRC node and one on the DST node, if the DST process is killed. 
     // it is not required to raise an exception at the JAVA level, the low level should be able to manage such an issue correctly but this is not the case right now unfortunately ...
     // TODO it will be nice to have the name of the process to help the end-user to know which Process has been killed
-    jxbt_throw_by_name(env, "org/simgrid/msg/ProcessKilledError", bprintf("Process %s killed :) (file smx_context_java.c)", MSG_process_get_name( (msg_process_t)context) ));
+   // jxbt_throw_by_name(env, "org/simgrid/msg/ProcessKilledError", bprintf("Process %s killed :) (file smx_context_java.c)", MSG_process_get_name( (msg_process_t)context) ));
+    jxbt_throw_by_name(env, "org/simgrid/msg/ProcessKilledError", bprintf("Process %s killed :) (file smx_context_java.c)", simcall_process_get_name((smx_process_t) SIMIX_context_get_process(context))) );
     XBT_DEBUG("Trigger a cancel error at the C level");
     THROWF(cancel_error, 0, "process cancelled");
   } else {