X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6760cb07d6b57be16928d95339d71e57c4e24f36..6ee7e9c2e455536ab817ae0136acfbb53822eecd:/examples/gras/all2all/all2all.c diff --git a/examples/gras/all2all/all2all.c b/examples/gras/all2all/all2all.c index 4c58b72488..db1504b568 100644 --- a/examples/gras/all2all/all2all.c +++ b/examples/gras/all2all/all2all.c @@ -48,7 +48,7 @@ int receiver(int argc, char *argv[]) mysock = gras_socket_server(myport); /* Get the data */ - INFO2("Listening on port %d (expecting %d messages)", + XBT_INFO("Listening on port %d (expecting %d messages)", gras_socket_my_port(mysock), todo); while (todo > 0) { gras_msg_wait(60 /* wait up to one minute */ , @@ -56,9 +56,9 @@ int receiver(int argc, char *argv[]) todo--; free(data); - INFO3("Got Data from %s:%d (still %d to go)", - gras_socket_peer_name(expeditor), gras_socket_peer_port(expeditor), - todo); + XBT_INFO("Got Data from %s:%d (still %d to go)", + gras_socket_peer_name(expeditor), + gras_socket_peer_port(expeditor), todo); } @@ -86,7 +86,8 @@ int sender(int argc, char *argv[]) /* xbt_dynar for peers */ - xbt_dynar_t peers = xbt_dynar_new(sizeof(xbt_peer_t), &xbt_peer_free_voidp); + xbt_dynar_t peers = + xbt_dynar_new(sizeof(xbt_peer_t), &xbt_peer_free_voidp); /* Init the GRAS infrastructure and declare my globals */ gras_init(&argc, argv); @@ -103,7 +104,7 @@ int sender(int argc, char *argv[]) memset(data, 32, datasize); data[datasize] = '\0'; - INFO0("Launch current node"); + XBT_INFO("Launch current node"); /* Register the known messages */ gras_msgtype_declare("data", gras_datadesc_by_name("string")); @@ -128,9 +129,9 @@ int sender(int argc, char *argv[]) } gras_msg_send(peer, "data", &data); if (gras_if_SG()) { - INFO2(" Sent Data from %s to %s", gras_os_myname(), h->name); + XBT_INFO(" Sent Data from %s to %s", gras_os_myname(), h->name); } else { - INFO0(" Sent Data"); + XBT_INFO(" Sent Data"); } gras_socket_close(peer);