X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e89f9f044e0a5071de93ec27bfca5993b9c86d1f..ce2111bc91a66ce824a3b34e1abc6dad403e1bc0:/examples/msg/chord/chord.c diff --git a/examples/msg/chord/chord.c b/examples/msg/chord/chord.c index ee4a351772..15d3423466 100644 --- a/examples/msg/chord/chord.c +++ b/examples/msg/chord/chord.c @@ -272,7 +272,7 @@ int node(int argc, char *argv[]) double next_check_predecessor_date = init_time + periodic_check_predecessor_delay; double next_lookup_date = init_time + periodic_lookup_delay; - xbt_assert0(argc == 3 || argc == 5, "Wrong number of arguments for this node"); + xbt_assert(argc == 3 || argc == 5, "Wrong number of arguments for this node"); // initialize my node s_node_t node = {0}; @@ -890,8 +890,6 @@ static void random_lookup(node_t node) */ int main(int argc, char *argv[]) { - xbt_os_timer_t timer = xbt_os_timer_new(); - if (argc < 3) { printf("Usage: %s [-nb_bits=n] [-timeout=t] platform_file deployment_file\n", argv[0]); printf("example: %s ../msg_platform.xml chord.xml\n", argv[0]); @@ -933,10 +931,8 @@ int main(int argc, char *argv[]) MSG_function_register("node", node); MSG_launch_application(application_file); - xbt_os_timer_start(timer); MSG_error_t res = MSG_main(); - xbt_os_timer_stop(timer); - XBT_CRITICAL("Simulation time %lf, messages created: %ld", xbt_os_timer_elapsed(timer), smx_total_comms); + XBT_CRITICAL("Messages created: %ld", smx_total_comms); XBT_INFO("Simulated time: %g", MSG_get_clock()); MSG_clean();