X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ed9b07e5c0c7eb6d4d38b0fe5aaea80d6996a8a7..4a6b0a991a67e6f2f67c03fed43529e078da7115:/examples/msg/token_ring/ring_call.c diff --git a/examples/msg/token_ring/ring_call.c b/examples/msg/token_ring/ring_call.c index dd69d862cb..06a46488bb 100644 --- a/examples/msg/token_ring/ring_call.c +++ b/examples/msg/token_ring/ring_call.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2014. The SimGrid Team. +/* Copyright (c) 2008-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,7 +7,6 @@ #include #include #include "simgrid/msg.h" -#include "surf/surf_private.h" int host(int argc, char *argv[]); unsigned int task_comp_size = 50000000; @@ -30,10 +29,10 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(ring, int host(int argc, char *argv[]) { - int host_number = atoi(MSG_process_get_name(MSG_process_self())); + int host_number = xbt_str_parse_int(MSG_process_get_name(MSG_process_self()), "Process name must be an integer but is: %s"); char mailbox[256]; msg_task_t task = NULL; - _XBT_GNUC_UNUSED int res; + XBT_ATTRIB_UNUSED int res; if (host_number == 0){ //master send then receive sprintf(mailbox, "%d", host_number+1); task = MSG_task_create("Token", task_comp_size, task_comm_size, NULL); @@ -80,9 +79,5 @@ int main(int argc, char **argv) res = MSG_main(); XBT_INFO("Simulation time %g", MSG_get_clock()); - if (res == MSG_OK) - return 0; - else - return 1; - + return res != MSG_OK; }