X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1ae03c66a227ad22908fe1114579f3459089a331..f4ed74ca6d4a744d2956a4f2906c897e1886cefd:/teshsuite/msg/storage/concurrent_rw.c diff --git a/teshsuite/msg/storage/concurrent_rw.c b/teshsuite/msg/storage/concurrent_rw.c index 8d938bb6dd..32b0d7de19 100644 --- a/teshsuite/msg/storage/concurrent_rw.c +++ b/teshsuite/msg/storage/concurrent_rw.c @@ -2,7 +2,7 @@ * All rights reserved. */ -#include "msg/msg.h" +#include "simgrid/msg.h" #include "xbt/log.h" #include @@ -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)