Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more factoring when sending MSG tasks
[simgrid.git] / src / msg / msg_gos.cpp
1 /* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <cmath>
7
8 #include "simgrid/Exception.hpp"
9 #include "simgrid/s4u/Comm.hpp"
10 #include "simgrid/s4u/Mailbox.hpp"
11 #include "src/instr/instr_private.hpp"
12 #include "src/kernel/activity/ExecImpl.hpp"
13 #include "src/msg/msg_private.hpp"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_gos, msg, "Logging specific to MSG (gos)");
16
17 /**
18  * @brief Executes a parallel task and waits for its termination.
19  *
20  * @param task a #msg_task_t to execute on the location on which the process is running.
21  *
22  * @return #MSG_OK if the task was successfully completed, #MSG_TASK_CANCELED or #MSG_HOST_FAILURE otherwise
23  */
24 msg_error_t MSG_parallel_task_execute(msg_task_t task)
25 {
26   return MSG_parallel_task_execute_with_timeout(task, -1);
27 }
28
29 msg_error_t MSG_parallel_task_execute_with_timeout(msg_task_t task, double timeout)
30 {
31   e_smx_state_t comp_state;
32   msg_error_t status = MSG_OK;
33
34   xbt_assert((not task->compute) && not task->is_used(), "This task is executed somewhere else. Go fix your code!");
35
36   XBT_DEBUG("Computing on %s", MSG_process_get_name(MSG_process_self()));
37
38   if (task->flops_amount <= 0.0 && not task->hosts_.empty()) {
39     return MSG_OK;
40   }
41
42   if (TRACE_actor_is_enabled())
43     simgrid::instr::Container::by_name(instr_pid(MSG_process_self()))->get_state("ACTOR_STATE")->push_event("execute");
44
45   try {
46     task->set_used();
47
48     task->compute = boost::static_pointer_cast<simgrid::kernel::activity::ExecImpl>(simcall_execution_parallel_start(
49         std::move(task->get_name()), task->hosts_.size(), task->hosts_.data(),
50         (task->flops_parallel_amount.empty() ? nullptr : task->flops_parallel_amount.data()),
51         (task->bytes_parallel_amount.empty() ? nullptr : task->bytes_parallel_amount.data()), -1.0, timeout));
52     XBT_DEBUG("Parallel execution action created: %p", task->compute.get());
53     if (task->has_tracing_category())
54       simgrid::simix::simcall([task] { task->compute->set_category(std::move(task->get_tracing_category())); });
55
56     comp_state = simcall_execution_wait(task->compute);
57
58     task->set_not_used();
59
60     XBT_DEBUG("Execution task '%s' finished in state %d", task->get_cname(), (int)comp_state);
61   } catch (simgrid::HostFailureException& e) {
62     status = MSG_HOST_FAILURE;
63   } catch (simgrid::TimeoutError& e) {
64     status = MSG_TIMEOUT;
65   } catch (simgrid::CancelException& e) {
66     status = MSG_TASK_CANCELED;
67   }
68
69   /* action ended, set comm and compute = nullptr, the actions is already destroyed in the main function */
70   task->flops_amount = 0.0;
71   task->comm         = nullptr;
72   task->compute      = nullptr;
73
74   if (TRACE_actor_is_enabled())
75     simgrid::instr::Container::by_name(instr_pid(MSG_process_self()))->get_state("ACTOR_STATE")->pop_event();
76
77   return status;
78 }
79
80 /**
81  * @brief Receives a task from a mailbox.
82  *
83  * This is a blocking function, the execution flow will be blocked until the task is received. See #MSG_task_irecv
84  * for receiving tasks asynchronously.
85  *
86  * @param task a memory location for storing a #msg_task_t.
87  * @param alias name of the mailbox to receive the task from
88  *
89  * @return Returns
90  * #MSG_OK if the task was successfully received,
91  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
92  */
93 msg_error_t MSG_task_receive(msg_task_t * task, const char *alias)
94 {
95   return MSG_task_receive_with_timeout(task, alias, -1);
96 }
97
98 /**
99  * @brief Receives a task from a mailbox at a given rate.
100  *
101  * @param task a memory location for storing a #msg_task_t.
102  * @param alias name of the mailbox to receive the task from
103  * @param rate limit the reception to rate bandwidth (byte/sec)
104  *
105  * The rate parameter can be used to receive a task with a limited bandwidth (smaller than the physical available
106  * value). Use MSG_task_receive() if you don't limit the rate (or pass -1 as a rate value do disable this feature).
107  *
108  * @return Returns
109  * #MSG_OK if the task was successfully received,
110  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
111  */
112 msg_error_t MSG_task_receive_bounded(msg_task_t * task, const char *alias, double rate)
113 {
114   return MSG_task_receive_with_timeout_bounded(task, alias, -1, rate);
115 }
116
117 /**
118  * @brief Receives a task from a mailbox with a given timeout.
119  *
120  * This is a blocking function with a timeout, the execution flow will be blocked until the task is received or the
121  * timeout is achieved. See #MSG_task_irecv for receiving tasks asynchronously.  You can provide a -1 timeout
122  * to obtain an infinite timeout.
123  *
124  * @param task a memory location for storing a #msg_task_t.
125  * @param alias name of the mailbox to receive the task from
126  * @param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_receive)
127  *
128  * @return Returns
129  * #MSG_OK if the task was successfully received,
130  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
131  */
132 msg_error_t MSG_task_receive_with_timeout(msg_task_t * task, const char *alias, double timeout)
133 {
134   return MSG_task_receive_ext(task, alias, timeout, nullptr);
135 }
136
137 /**
138  * @brief Receives a task from a mailbox with a given timeout and at a given rate.
139  *
140  * @param task a memory location for storing a #msg_task_t.
141  * @param alias name of the mailbox to receive the task from
142  * @param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_receive)
143  * @param rate limit the reception to rate bandwidth (byte/sec)
144  *
145  * The rate parameter can be used to send a task with a limited
146  * bandwidth (smaller than the physical available value). Use
147  * MSG_task_receive() if you don't limit the rate (or pass -1 as a
148  * rate value do disable this feature).
149  *
150  * @return Returns
151  * #MSG_OK if the task was successfully received,
152  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
153  */
154 msg_error_t MSG_task_receive_with_timeout_bounded(msg_task_t* task, const char* alias, double timeout, double rate)
155 {
156   return MSG_task_receive_ext_bounded(task, alias, timeout, nullptr, rate);
157 }
158
159 /**
160  * @brief Receives a task from a mailbox from a specific host with a given timeout.
161  *
162  * This is a blocking function with a timeout, the execution flow will be blocked until the task is received or the
163  * timeout is achieved. See #MSG_task_irecv for receiving tasks asynchronously. You can provide a -1 timeout
164  * to obtain an infinite timeout.
165  *
166  * @param task a memory location for storing a #msg_task_t.
167  * @param alias name of the mailbox to receive the task from
168  * @param timeout is the maximum wait time for completion (provide -1 for no timeout)
169  * @param host a #msg_host_t host from where the task was sent
170  *
171  * @return Returns
172  * #MSG_OK if the task was successfully received,
173  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
174  */
175 msg_error_t MSG_task_receive_ext(msg_task_t * task, const char *alias, double timeout, msg_host_t host)
176 {
177   XBT_DEBUG("MSG_task_receive_ext: Trying to receive a message on mailbox '%s'", alias);
178   return MSG_task_receive_ext_bounded(task, alias, timeout, host, -1.0);
179 }
180
181 /**
182  * @brief Receives a task from a mailbox from a specific host with a given timeout  and at a given rate.
183  *
184  * @param task a memory location for storing a #msg_task_t.
185  * @param alias name of the mailbox to receive the task from
186  * @param timeout is the maximum wait time for completion (provide -1 for no timeout)
187  * @param host a #msg_host_t host from where the task was sent
188  * @param rate limit the reception to rate bandwidth (byte/sec)
189  *
190  * The rate parameter can be used to receive a task with a limited bandwidth (smaller than the physical available
191  * value). Use MSG_task_receive_ext() if you don't limit the rate (or pass -1 as a rate value do disable this feature).
192  *
193  * @return Returns
194  * #MSG_OK if the task was successfully received,
195  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
196  */
197 msg_error_t MSG_task_receive_ext_bounded(msg_task_t * task, const char *alias, double timeout, msg_host_t host,
198                                          double rate)
199 {
200   XBT_DEBUG("MSG_task_receive_ext: Trying to receive a message on mailbox '%s'", alias);
201   msg_error_t ret = MSG_OK;
202   /* We no longer support getting a task from a specific host */
203   if (host)
204     THROW_UNIMPLEMENTED;
205
206   /* Sanity check */
207   xbt_assert(task, "Null pointer for the task storage");
208
209   if (*task)
210     XBT_WARN("Asked to write the received task in a non empty struct -- proceeding.");
211
212   /* Try to receive it by calling SIMIX network layer */
213   try {
214     void* payload;
215     simgrid::s4u::Mailbox::by_name(alias)
216         ->get_init()
217         ->set_dst_data(&payload, sizeof(msg_task_t*))
218         ->set_rate(rate)
219         ->wait_for(timeout);
220     *task = static_cast<msg_task_t>(payload);
221     XBT_DEBUG("Got task %s from %s", (*task)->get_cname(), alias);
222     (*task)->set_not_used();
223   } catch (simgrid::HostFailureException& e) {
224     ret = MSG_HOST_FAILURE;
225   } catch (simgrid::TimeoutError& e) {
226     ret = MSG_TIMEOUT;
227   } catch (simgrid::CancelException& e) {
228     ret = MSG_TASK_CANCELED;
229   } catch (xbt_ex& e) {
230     if (e.category == network_error)
231       ret = MSG_TRANSFER_FAILURE;
232     else
233       throw;
234   }
235
236   if (TRACE_actor_is_enabled() && ret != MSG_HOST_FAILURE && ret != MSG_TRANSFER_FAILURE && ret != MSG_TIMEOUT) {
237     container_t process_container = simgrid::instr::Container::by_name(instr_pid(MSG_process_self()));
238
239     std::string key = std::string("p") + std::to_string((*task)->get_id());
240     simgrid::instr::Container::get_root()->get_link("ACTOR_TASK_LINK")->end_event(process_container, "SR", key);
241   }
242   return ret;
243 }
244
245
246 /**
247  * @brief Starts listening for receiving a task from an asynchronous communication.
248  *
249  * This is a non blocking function: use MSG_comm_wait() or MSG_comm_test() to end the communication.
250  *
251  * @param task a memory location for storing a #msg_task_t. has to be valid until the end of the communication.
252  * @param name of the mailbox to receive the task on
253  * @return the msg_comm_t communication created
254  */
255 msg_comm_t MSG_task_irecv(msg_task_t *task, const char *name)
256 {
257   return MSG_task_irecv_bounded(task, name, -1.0);
258 }
259
260 /**
261  * @brief Starts listening for receiving a task from an asynchronous communication at a given rate.
262  *
263  * The rate parameter can be used to receive a task with a limited
264  * bandwidth (smaller than the physical available value). Use
265  * MSG_task_irecv() if you don't limit the rate (or pass -1 as a rate
266  * value do disable this feature).
267  *
268  * @param task a memory location for storing a #msg_task_t. has to be valid until the end of the communication.
269  * @param name of the mailbox to receive the task on
270  * @param rate limit the bandwidth to the given rate (byte/sec)
271  * @return the msg_comm_t communication created
272  */
273 msg_comm_t MSG_task_irecv_bounded(msg_task_t *task, const char *name, double rate)
274 {
275   simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::by_name(name);
276
277   /* FIXME: these functions are not traceable */
278   /* Sanity check */
279   xbt_assert(task, "Null pointer for the task storage");
280
281   if (*task)
282     XBT_CRITICAL("MSG_task_irecv() was asked to write in a non empty task struct.");
283
284   /* Try to receive it by calling SIMIX network layer */
285   msg_comm_t comm = new simgrid::msg::Comm(
286       nullptr, task, mbox->get_init()->set_dst_data((void**)task, sizeof(msg_task_t*))->set_rate(rate)->start());
287
288   return comm;
289 }
290
291 /**
292  * @brief Checks whether a communication is done, and if yes, finalizes it.
293  * @param comm the communication to test
294  * @return 'true' if the communication is finished
295  * (but it may have failed, use MSG_comm_get_status() to know its status)
296  * or 'false' if the communication is not finished yet
297  * If the status is 'false', don't forget to use MSG_process_sleep() after the test.
298  */
299 int MSG_comm_test(msg_comm_t comm)
300 {
301   bool finished = false;
302
303   try {
304     finished = comm->s_comm->test();
305     if (finished && comm->task_received != nullptr) {
306       /* I am the receiver */
307       (*comm->task_received)->set_not_used();
308     }
309   } catch (simgrid::TimeoutError& e) {
310     comm->status = MSG_TIMEOUT;
311     finished     = true;
312   } catch (simgrid::CancelException& e) {
313     comm->status = MSG_TASK_CANCELED;
314     finished     = true;
315   }
316   catch (xbt_ex& e) {
317     if (e.category == network_error) {
318       comm->status = MSG_TRANSFER_FAILURE;
319       finished     = true;
320     } else {
321       throw;
322     }
323   }
324
325   return finished;
326 }
327
328 /**
329  * @brief This function checks if a communication is finished.
330  * @param comms a vector of communications
331  * @return the position of the finished communication if any
332  * (but it may have failed, use MSG_comm_get_status() to know its status), or -1 if none is finished
333  */
334 int MSG_comm_testany(xbt_dynar_t comms)
335 {
336   int finished_index = -1;
337
338   /* Create the equivalent array with SIMIX objects: */
339   std::vector<simgrid::kernel::activity::CommImpl*> s_comms;
340   s_comms.reserve(xbt_dynar_length(comms));
341   msg_comm_t comm;
342   unsigned int cursor;
343   xbt_dynar_foreach(comms, cursor, comm) {
344     s_comms.push_back(static_cast<simgrid::kernel::activity::CommImpl*>(comm->s_comm->get_impl().get()));
345   }
346
347   msg_error_t status = MSG_OK;
348   try {
349     finished_index = simcall_comm_testany(s_comms.data(), s_comms.size());
350   } catch (simgrid::TimeoutError& e) {
351     finished_index = e.value;
352     status         = MSG_TIMEOUT;
353   } catch (simgrid::CancelException& e) {
354     finished_index = e.value;
355     status         = MSG_TASK_CANCELED;
356   }
357   catch (xbt_ex& e) {
358     if (e.category != network_error)
359       throw;
360     finished_index = e.value;
361     status         = MSG_TRANSFER_FAILURE;
362   }
363
364   if (finished_index != -1) {
365     comm = xbt_dynar_get_as(comms, finished_index, msg_comm_t);
366     /* the communication is finished */
367     comm->status = status;
368
369     if (status == MSG_OK && comm->task_received != nullptr) {
370       /* I am the receiver */
371       (*comm->task_received)->set_not_used();
372     }
373   }
374
375   return finished_index;
376 }
377
378 /** @brief Destroys the provided communication. */
379 void MSG_comm_destroy(msg_comm_t comm)
380 {
381   delete comm;
382 }
383
384 /** @brief Wait for the completion of a communication.
385  *
386  * It takes two parameters.
387  * @param comm the communication to wait.
388  * @param timeout Wait until the communication terminates or the timeout occurs.
389  *                You can provide a -1 timeout to obtain an infinite timeout.
390  * @return msg_error_t
391  */
392 msg_error_t MSG_comm_wait(msg_comm_t comm, double timeout)
393 {
394   try {
395     comm->s_comm->wait_for(timeout);
396
397     if (comm->task_received != nullptr) {
398       /* I am the receiver */
399       (*comm->task_received)->set_not_used();
400     }
401
402     /* FIXME: these functions are not traceable */
403   } catch (simgrid::TimeoutError& e) {
404     comm->status = MSG_TIMEOUT;
405   } catch (simgrid::CancelException& e) {
406     comm->status = MSG_TASK_CANCELED;
407   }
408   catch (xbt_ex& e) {
409     if (e.category == network_error)
410       comm->status = MSG_TRANSFER_FAILURE;
411     else
412       throw;
413   }
414
415   return comm->status;
416 }
417
418 /** @brief This function is called by a sender and permit to wait for each communication
419  *
420  * @param comm a vector of communication
421  * @param nb_elem is the size of the comm vector
422  * @param timeout for each call of MSG_comm_wait
423  */
424 void MSG_comm_waitall(msg_comm_t * comm, int nb_elem, double timeout)
425 {
426   for (int i = 0; i < nb_elem; i++)
427     MSG_comm_wait(comm[i], timeout);
428 }
429
430 /** @brief This function waits for the first communication finished in a list.
431  * @param comms a vector of communications
432  * @return the position of the first finished communication
433  * (but it may have failed, use MSG_comm_get_status() to know its status)
434  */
435 int MSG_comm_waitany(xbt_dynar_t comms)
436 {
437   int finished_index = -1;
438
439   /* Create the equivalent array with SIMIX objects: */
440   std::vector<simgrid::kernel::activity::CommImpl*> s_comms;
441   s_comms.reserve(xbt_dynar_length(comms));
442   msg_comm_t comm;
443   unsigned int cursor;
444   xbt_dynar_foreach(comms, cursor, comm) {
445     s_comms.push_back(static_cast<simgrid::kernel::activity::CommImpl*>(comm->s_comm->get_impl().get()));
446   }
447
448   msg_error_t status = MSG_OK;
449   try {
450     finished_index = simcall_comm_waitany(s_comms.data(), s_comms.size(), -1);
451   } catch (simgrid::TimeoutError& e) {
452     finished_index = e.value;
453     status         = MSG_TIMEOUT;
454   } catch (simgrid::CancelException& e) {
455     finished_index = e.value;
456     status         = MSG_TASK_CANCELED;
457   }
458   catch(xbt_ex& e) {
459     if (e.category == network_error) {
460       finished_index = e.value;
461       status         = MSG_TRANSFER_FAILURE;
462     } else {
463       throw;
464     }
465   }
466
467   xbt_assert(finished_index != -1, "WaitAny returned -1");
468
469   comm = xbt_dynar_get_as(comms, finished_index, msg_comm_t);
470   /* the communication is finished */
471   comm->status = status;
472
473   if (comm->task_received != nullptr) {
474     /* I am the receiver */
475     (*comm->task_received)->set_not_used();
476   }
477
478   return finished_index;
479 }
480
481 /**
482  * @brief Returns the error (if any) that occurred during a finished communication.
483  * @param comm a finished communication
484  * @return the status of the communication, or #MSG_OK if no error occurred during the communication
485  */
486 msg_error_t MSG_comm_get_status(msg_comm_t comm) {
487
488   return comm->status;
489 }
490
491 /** @brief Get a task (#msg_task_t) from a communication
492  *
493  * @param comm the communication where to get the task
494  * @return the task from the communication
495  */
496 msg_task_t MSG_comm_get_task(msg_comm_t comm)
497 {
498   xbt_assert(comm, "Invalid parameter");
499
500   return comm->task_received ? *comm->task_received : comm->task_sent;
501 }
502
503 /**
504  * @brief This function is called by SIMIX in kernel mode to copy the data of a comm.
505  * @param comm the comm
506  * @param buff the data copied
507  * @param buff_size size of the buffer
508  */
509 void MSG_comm_copy_data_from_SIMIX(simgrid::kernel::activity::CommImpl* comm, void* buff, size_t buff_size)
510 {
511   SIMIX_comm_copy_pointer_callback(comm, buff, buff_size);
512
513   // notify the user callback if any
514   if (msg_global->task_copy_callback) {
515     msg_task_t task = static_cast<msg_task_t>(buff);
516     msg_global->task_copy_callback(task, comm->src_actor_->ciface(), comm->dst_actor_->ciface());
517   }
518 }
519
520 /**
521  * @brief Sends a task to a mailbox
522  *
523  * This is a blocking function, the execution flow will be blocked until the task is sent (and received on the other
524  * side if #MSG_task_receive is used).
525  * See #MSG_task_isend for sending tasks asynchronously.
526  *
527  * @param task the task to be sent
528  * @param alias the mailbox name to where the task is sent
529  *
530  * @return Returns #MSG_OK if the task was successfully sent,
531  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
532  */
533 msg_error_t MSG_task_send(msg_task_t task, const char *alias)
534 {
535   XBT_DEBUG("MSG_task_send: Trying to send a message on mailbox '%s'", alias);
536   return MSG_task_send_with_timeout(task, alias, -1);
537 }
538
539 /**
540  * @brief Sends a task to a mailbox with a maximum rate
541  *
542  * This is a blocking function, the execution flow will be blocked until the task is sent. The maxrate parameter allows
543  * the application to limit the bandwidth utilization of network links when sending the task.
544  *
545  * The maxrate parameter can be used to send a task with a limited bandwidth (smaller than the physical available
546  * value). Use MSG_task_send() if you don't limit the rate (or pass -1 as a rate value do disable this feature).
547  *
548  * @param task the task to be sent
549  * @param alias the mailbox name to where the task is sent
550  * @param maxrate the maximum communication rate for sending this task (byte/sec)
551  *
552  * @return Returns #MSG_OK if the task was successfully sent,
553  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE otherwise.
554  */
555 msg_error_t MSG_task_send_bounded(msg_task_t task, const char *alias, double maxrate)
556 {
557   task->set_rate(maxrate);
558   return MSG_task_send(task, alias);
559 }
560
561 /**
562  * @brief Sends a task to a mailbox with a timeout
563  *
564  * This is a blocking function, the execution flow will be blocked until the task is sent or the timeout is achieved.
565  *
566  * @param task the task to be sent
567  * @param alias the mailbox name to where the task is sent
568  * @param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_send)
569  *
570  * @return Returns #MSG_OK if the task was successfully sent,
571  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
572  */
573 msg_error_t MSG_task_send_with_timeout(msg_task_t task, const char *alias, double timeout)
574 {
575   msg_error_t ret = MSG_OK;
576   /* Try to send it */
577   try {
578     simgrid::s4u::CommPtr comm = task->send_async(alias, nullptr, false);
579     task->comm = comm;
580     comm->wait_for(timeout);
581   } catch (simgrid::TimeoutError& e) {
582     ret = MSG_TIMEOUT;
583   } catch (simgrid::CancelException& e) {
584     ret = MSG_HOST_FAILURE;
585   } catch (xbt_ex& e) {
586     if (e.category == network_error)
587       ret = MSG_TRANSFER_FAILURE;
588     else
589       throw;
590
591     /* If the send failed, it is not used anymore */
592     task->set_not_used();
593   }
594
595   return ret;
596 }
597
598 /**
599  * @brief Sends a task to a mailbox with a timeout and with a maximum rate
600  *
601  * This is a blocking function, the execution flow will be blocked until the task is sent or the timeout is achieved.
602  *
603  * The maxrate parameter can be used to send a task with a limited bandwidth (smaller than the physical available
604  * value). Use MSG_task_send_with_timeout() if you don't limit the rate (or pass -1 as a rate value do disable this
605  * feature).
606  *
607  * @param task the task to be sent
608  * @param alias the mailbox name to where the task is sent
609  * @param timeout is the maximum wait time for completion (if -1, this call is the same as #MSG_task_send)
610  * @param maxrate the maximum communication rate for sending this task (byte/sec)
611  *
612  * @return Returns #MSG_OK if the task was successfully sent,
613  * #MSG_HOST_FAILURE, or #MSG_TRANSFER_FAILURE, or #MSG_TIMEOUT otherwise.
614  */
615 msg_error_t MSG_task_send_with_timeout_bounded(msg_task_t task, const char *alias, double timeout, double maxrate)
616 {
617   task->set_rate(maxrate);
618   return MSG_task_send_with_timeout(task, alias, timeout);
619 }
620
621 /**
622  * @brief Look if there is a communication on a mailbox and return the PID of the sender process.
623  *
624  * @param alias the name of the mailbox to be considered
625  *
626  * @return Returns the PID of sender process,
627  * -1 if there is no communication in the mailbox.#include <cmath>
628  *
629  */
630 int MSG_task_listen_from(const char *alias)
631 {
632   /* looks inside the rdv directly. Not clean. */
633   simgrid::kernel::activity::CommImplPtr comm = simgrid::s4u::Mailbox::by_name(alias)->front();
634
635   if (comm && comm->src_actor_)
636     return comm->src_actor_->get_pid();
637   else
638     return -1;
639 }
640