From: Martin Quinson Date: Sat, 10 Nov 2018 23:54:05 +0000 (+0100) Subject: java process creation: this was already binded by java_main_jprocess() X-Git-Tag: v3_22~808 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/57099ec13158ca0a2e433383401a6fb4c70ff917 java process creation: this was already binded by java_main_jprocess() --- diff --git a/src/bindings/java/jmsg_process.cpp b/src/bindings/java/jmsg_process.cpp index 7580858ef9..9caba49d8b 100644 --- a/src/bindings/java/jmsg_process.cpp +++ b/src/bindings/java/jmsg_process.cpp @@ -77,9 +77,6 @@ JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_create(JNIEnv* env, jobject /*data*/ nullptr, jhost_get_native(env, jhost), /* properties*/ nullptr); env->ReleaseStringUTFChars(jname, name); - /* bind the java process instance to the native process */ - jprocess_bind(jprocess, process, env); - /* Retrieve the kill time from the process */ jdouble jkill = env->GetDoubleField(jprocess, jprocess_field_Process_killTime); MSG_process_set_kill_time(process, (double)jkill);