Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add an unused (for the moment) module file
[simgrid.git] / src / msg / msg_mailbox.c
index 194c133..d218c67 100644 (file)
@@ -72,10 +72,6 @@ MSG_mailbox_get_task_ext(msg_mailbox_t mailbox, m_task_t * task,
 {
   xbt_ex_t e;
   MSG_error_t ret = MSG_OK;
-  volatile smx_action_t comm = NULL;
-#ifdef HAVE_TRACING
-  double start_time = 0;
-#endif
   /* We no longer support getting a task from a specific host */
   if (host)
     THROW_UNIMPLEMENTED;
@@ -83,7 +79,7 @@ MSG_mailbox_get_task_ext(msg_mailbox_t mailbox, m_task_t * task,
   CHECK_HOST();
 #ifdef HAVE_TRACING
   TRACE_msg_task_get_start();
-  start_time = MSG_get_clock();
+  double start_time = MSG_get_clock();
 #endif
 
   /* Sanity check */
@@ -95,9 +91,7 @@ MSG_mailbox_get_task_ext(msg_mailbox_t mailbox, m_task_t * task,
 
   /* Try to receive it by calling SIMIX network layer */
   TRY {
-    comm = SIMIX_req_comm_irecv(mailbox, task, NULL, NULL, NULL);
-    SIMIX_req_comm_wait(comm, timeout);
-    (*task)->simdata->comm = comm;
+    SIMIX_req_comm_recv(mailbox, task, NULL, NULL, NULL, timeout);
     DEBUG2("Got task %s from %p",(*task)->name,mailbox);
     (*task)->simdata->isused=0;
   }
@@ -117,16 +111,14 @@ MSG_mailbox_get_task_ext(msg_mailbox_t mailbox, m_task_t * task,
     }
     xbt_ex_free(e);
   }
-  if (comm != NULL) {
-    //SIMIX_req_comm_destroy(comm);
-  }
 
-  if (ret != MSG_HOST_FAILURE &&
-      ret != MSG_TRANSFER_FAILURE && ret != MSG_TIMEOUT) {
 #ifdef HAVE_TRACING
+  if (ret != MSG_HOST_FAILURE &&
+      ret != MSG_TRANSFER_FAILURE &&
+      ret != MSG_TIMEOUT) {
     TRACE_msg_task_get_end(start_time, *task);
-#endif
   }
+#endif
   MSG_RETURN(ret);
 }
 
@@ -138,8 +130,8 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task,
   MSG_error_t ret = MSG_OK;
   simdata_task_t t_simdata = NULL;
   m_process_t process = MSG_process_self();
-  volatile smx_action_t comm = NULL;
 #ifdef HAVE_TRACING
+  volatile smx_action_t comm = NULL;
   int call_end = 0;
 #endif
   CHECK_HOST();
@@ -163,13 +155,16 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task,
 
   /* Try to send it by calling SIMIX network layer */
   TRY {
+#ifdef HAVE_TRACING
     comm = SIMIX_req_comm_isend(mailbox, t_simdata->message_size,
-             t_simdata->rate, task, sizeof(void *), NULL, NULL, 0);
+        t_simdata->rate, task, sizeof(void *), NULL, NULL, 0);
     t_simdata->comm = comm;
-#ifdef HAVE_TRACING
     SIMIX_req_set_category(comm, task->category);
-#endif
     SIMIX_req_comm_wait(comm, timeout);
+#else
+    SIMIX_req_comm_send(mailbox, t_simdata->message_size,
+        t_simdata->rate, task, sizeof(void*), NULL, NULL, timeout);
+#endif
   }
 
   CATCH(e) {
@@ -189,11 +184,7 @@ MSG_mailbox_put_with_timeout(msg_mailbox_t mailbox, m_task_t task,
     xbt_ex_free(e);
 
     /* If the send failed, it is not used anymore */
-    t_simdata->isused=0;
-  }
-
-  if (comm != NULL) {
-    //SIMIX_req_comm_destroy(comm);
+    t_simdata->isused = 0;
   }
 
   process->simdata->waiting_task = NULL;