X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d6d6125ce98df87b1f8a2407f3245513847af6cd..c85e43e7cc3034aefc758257a387d32026c05ef4:/teshsuite/msg/storage/concurrent_rw.c diff --git a/teshsuite/msg/storage/concurrent_rw.c b/teshsuite/msg/storage/concurrent_rw.c index 592715a8da..32b0d7de19 100644 --- a/teshsuite/msg/storage/concurrent_rw.c +++ b/teshsuite/msg/storage/concurrent_rw.c @@ -116,16 +116,16 @@ int main(int argc, char **argv) MSG_create_environment(argv[1]); MSG_function_register("host", host); - storage_info(MSG_get_host_by_name(xbt_strdup("host"))); + storage_info(MSG_host_by_name(xbt_strdup("host"))); for(i = 0 ; i<10; i++){ - MSG_process_create(xbt_strdup("host"), host, NULL, MSG_get_host_by_name(xbt_strdup("host"))); + MSG_process_create(xbt_strdup("host"), host, NULL, MSG_host_by_name(xbt_strdup("host"))); } res = MSG_main(); - storage_info(MSG_get_host_by_name(xbt_strdup("host"))); + storage_info(MSG_host_by_name(xbt_strdup("host"))); XBT_INFO("Simulation time %g", MSG_get_clock()); if (res == MSG_OK)