X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8f1fa1304e5b8ad170ef29c9fcb14ccf0a6d832..f783ed4680c6862a1b7543237e89d1221334bae0:/examples/gras/p2p/can/can_tests.c diff --git a/examples/gras/p2p/can/can_tests.c b/examples/gras/p2p/can/can_tests.c index 89104f3158..44a7227907 100644 --- a/examples/gras/p2p/can/can_tests.c +++ b/examples/gras/p2p/can/can_tests.c @@ -27,7 +27,6 @@ int start_war(int argc, char **argv) { gras_socket_t temp_sock = NULL; nuke_t nuke_msg; - xbt_ex_t e; // the error variable used in TRY.. CATCH tokens. //return 0; // in order to inhibit the War of the Nodes gras_init(&argc, argv); gras_os_sleep((15 - gras_os_getpid()) * 20 + 200); // wait a bit. @@ -35,7 +34,8 @@ int start_war(int argc, char **argv) TRY { // contacting the bad guy that will launch the War. temp_sock = gras_socket_client(gras_os_myname(), atoi(argv[1])); - } CATCH(e) { + } + CATCH_ANONYMOUS { RETHROWF("Unable to connect known host so as to declare WAR!: %s"); } @@ -48,7 +48,8 @@ int start_war(int argc, char **argv) TRY { gras_msg_send(temp_sock, "can_nuke", &nuke_msg); - } CATCH(e) { + } + CATCH_ANONYMOUS { gras_socket_close(temp_sock); RETHROWF ("Unable to contact known host so as to declare WAR!!!!!!!!!!!!!!!!!!!!!: %s"); @@ -63,7 +64,6 @@ static int send_nuke(nuke_t * msg, int xId, int yId) { node_data_t *globals = (node_data_t *) gras_userdata_get(); gras_socket_t temp_sock = NULL; - xbt_ex_t e; // the error variable used in TRY.. CATCH tokens. if (xId >= globals->x1 && xId <= globals->x2 && yId >= globals->y1 && yId <= globals->y2) { @@ -95,14 +95,14 @@ static int send_nuke(nuke_t * msg, int xId, int yId) TRY { // sending the nuke. temp_sock = gras_socket_client(host, port); } - CATCH(e) { + CATCH_ANONYMOUS { RETHROWF("Unable to connect the nuke!: %s"); } //XBT_INFO("%s ON %s %d %d <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<",globals->host,host,xId,yId); TRY { gras_msg_send(temp_sock, "can_nuke", msg); } - CATCH(e) { + CATCH_ANONYMOUS { RETHROWF("Unable to send the nuke!: %s"); } gras_socket_close(temp_sock); @@ -190,13 +190,13 @@ static int node_nuke_handler(gras_msg_cb_ctx_t ctx, void *payload_data) TRY { temp_sock = gras_socket_client(host, port); } - CATCH(e) { + CATCH_ANONYMOUS { RETHROWF("Unable to connect the nuke!: %s"); } TRY { gras_msg_send(temp_sock, "can_nuke", incoming); } - CATCH(e) { + CATCH_ANONYMOUS { RETHROWF("Unable to send the nuke!: %s"); } XBT_INFO("Nuke re-aimed by %s to %s for (%d;%d)", globals->host, host,