X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3c9bf25b086ad8a9f4eb32420ef6693c8e796f22..f905895de23cb0b3fe314fdbc5a7a827588dec98:/src/smpi/smpi_sender.c diff --git a/src/smpi/smpi_sender.c b/src/smpi/smpi_sender.c index 41ff7a1bd2..7b3e609d3d 100644 --- a/src/smpi/smpi_sender.c +++ b/src/smpi/smpi_sender.c @@ -16,7 +16,7 @@ int smpi_sender(int argc, char **argv) smx_host_t dhost; - char communicate[] = "communicate"; + char communication[] = "communication"; smx_action_t action; smpi_received_message_t message; @@ -83,7 +83,7 @@ int smpi_sender(int argc, char **argv) request->completed = 1; - action = SIMIX_action_communicate(shost, dhost, communicate, request->datatype->size * request->count, -1.0); + action = SIMIX_action_communicate(shost, dhost, communication, request->datatype->size * request->count, -1.0); SIMIX_register_action_to_condition(action, request->cond); SIMIX_cond_wait(request->cond, request->mutex); @@ -91,7 +91,7 @@ int smpi_sender(int argc, char **argv) SIMIX_mutex_unlock(request->mutex); - SIMIX_action_destroy(action); + //SIMIX_action_destroy(action); // wake up receiver if necessary receiver_process = smpi_global->receiver_processes[drank];