X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8f34741f2ecbd5b008788605bdec0333ef365007..60b1ac0e15366bee22987d25df95e8b3c3429fd1:/examples/msg/cloud/multicore.c diff --git a/examples/msg/cloud/multicore.c b/examples/msg/cloud/multicore.c index 32229cf1f5..c8ad9f60fc 100644 --- a/examples/msg/cloud/multicore.c +++ b/examples/msg/cloud/multicore.c @@ -335,11 +335,11 @@ int main(int argc, char *argv[]) msg_host_t pm2 = xbt_dynar_get_as(hosts_dynar, 2, msg_host_t); XBT_INFO("%s: %d core(s), %f flops/s per each", MSG_host_get_name(pm0), MSG_host_get_core_number(pm0), - MSG_get_host_speed(pm0)); + MSG_host_get_speed(pm0)); XBT_INFO("%s: %d core(s), %f flops/s per each", MSG_host_get_name(pm1), MSG_host_get_core_number(pm1), - MSG_get_host_speed(pm1)); + MSG_host_get_speed(pm1)); XBT_INFO("%s: %d core(s), %f flops/s per each", MSG_host_get_name(pm2), MSG_host_get_core_number(pm2), - MSG_get_host_speed(pm2)); + MSG_host_get_speed(pm2)); MSG_process_create("master", master_main, NULL, pm0);