X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4020ef296bdd73b30f7ca2270b14a61b1cd4fba5..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 be1b4a7c59..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, 2009, 2010. 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 @@ -6,8 +6,7 @@ #include #include -#include "msg/msg.h" -#include "surf/surf_private.h" +#include "simgrid/msg.h" int host(int argc, char *argv[]); unsigned int task_comp_size = 50000000; @@ -18,12 +17,22 @@ int nb_hosts; /* All declared hosts */ XBT_LOG_NEW_DEFAULT_CATEGORY(ring, "Messages specific for this msg example"); +/** @addtogroup MSG_examples + * + * @section MSG_ex_apps Examples of full applications + * + * - token_ring/ring_call.c: Classical token ring + * communication, where a token is exchanged along a ring to reach + * every participant. + * + */ + 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]; - m_task_t task = NULL; - _XBT_GNUC_UNUSED int res; + msg_task_t task = NULL; + 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); @@ -53,7 +62,7 @@ int host(int argc, char *argv[]) int main(int argc, char **argv) { int i,res; - MSG_global_init(&argc, argv); + MSG_init(&argc, argv); MSG_create_environment(argv[1]); xbt_dynar_t hosts = MSG_hosts_as_dynar(); nb_hosts = xbt_dynar_length(hosts); @@ -63,17 +72,12 @@ int main(int argc, char **argv) for(i = 0 ; i