X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc24be11966d17b35002353538b1eb5efda40f9f..ea74f5d95928a521a588737e81f1de94eef25d19:/examples/c/exec-remote/exec-remote.c diff --git a/examples/c/exec-remote/exec-remote.c b/examples/c/exec-remote/exec-remote.c index c5f45bd260..a6e4a12ca6 100644 --- a/examples/c/exec-remote/exec-remote.c +++ b/examples/c/exec-remote/exec-remote.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -25,8 +25,8 @@ static void wizard(int argc, char* argv[]) XBT_INFO("It started. Running 48.492Mf takes exactly one second on Ginette (but not on Fafard)."); sg_actor_sleep_for(0.1); - XBT_INFO("Loads in flops/s: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f", sg_host_load(boivin), sg_host_load(fafard), - sg_host_load(ginette)); + XBT_INFO("Loads in flops/s: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f", sg_host_get_load(boivin), + sg_host_get_load(fafard), sg_host_get_load(ginette)); sg_exec_wait(exec); @@ -37,14 +37,14 @@ static void wizard(int argc, char* argv[]) sg_exec_start(exec); sg_actor_sleep_for(0.5); - XBT_INFO("Loads before the move: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f", sg_host_load(boivin), sg_host_load(fafard), - sg_host_load(ginette)); + XBT_INFO("Loads before the move: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f", sg_host_get_load(boivin), + sg_host_get_load(fafard), sg_host_get_load(ginette)); sg_exec_set_host(exec, boivin); sg_actor_sleep_for(0.1); - XBT_INFO("Loads after the move: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f", sg_host_load(boivin), sg_host_load(fafard), - sg_host_load(ginette)); + XBT_INFO("Loads after the move: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f", sg_host_get_load(boivin), + sg_host_get_load(fafard), sg_host_get_load(ginette)); sg_exec_wait(exec); XBT_INFO("Done!");