X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d3b82ab21c706eff03f671a2a997c20b2e29889e..bf57dc39f9991991f1f94f736787304718026c97:/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..fc6092508a 100644 --- a/examples/msg/token_ring/ring_call.c +++ b/examples/msg/token_ring/ring_call.c @@ -18,11 +18,21 @@ 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())); char mailbox[256]; - m_task_t task = NULL; + msg_task_t task = NULL; _XBT_GNUC_UNUSED int res; if (host_number == 0){ //master send then receive sprintf(mailbox, "%d", host_number+1); @@ -53,7 +63,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,14 +73,13 @@ int main(int argc, char **argv) for(i = 0 ; i