X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f8cf994b5d7f833930b87bfee6e239ea9c9f6c29..f3e4803befab19389587dd1d9af5ecdeffec551e:/src/bindings/java/jmsg_host.c diff --git a/src/bindings/java/jmsg_host.c b/src/bindings/java/jmsg_host.c index 0d4469c572..5549651e54 100644 --- a/src/bindings/java/jmsg_host.c +++ b/src/bindings/java/jmsg_host.c @@ -7,7 +7,7 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "xbt/str.h" -#include "msg/msg.h" +#include "simgrid/msg.h" #include "jmsg.h" #include "jmsg_host.h" #include "jxbt_utilities.h" @@ -77,7 +77,7 @@ Java_org_simgrid_msg_Host_getByName(JNIEnv * env, jclass cls, } const char *name = (*env)->GetStringUTFChars(env, jname, 0); /* get the host by name (the hosts are created during the grid resolution) */ - host = MSG_get_host_by_name(name); + host = MSG_host_by_name(name); if (!host) { /* invalid name */ jxbt_throw_host_not_found(env, name); @@ -245,7 +245,7 @@ Java_org_simgrid_msg_Host_setProperty(JNIEnv *env, jobject jhost, jobject jname, } const char *name = (*env)->GetStringUTFChars(env, jname, 0); const char *value_java = (*env)->GetStringUTFChars(env, jvalue, 0); - char *value = strdup(value_java); + char *value = xbt_strdup(value_java); MSG_host_set_property_value(host, name, value, xbt_free_f);