X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cf6d29fa983a462f7759856d3d01854b5ee79a70..3f2d29b975f6d250065ce065ea091c3f826721f6:/include/msg/msg.h diff --git a/include/msg/msg.h b/include/msg/msg.h index 2b4df2d626..81e87a9655 100644 --- a/include/msg/msg.h +++ b/include/msg/msg.h @@ -72,6 +72,7 @@ MSG_error_t MSG_process_start(m_process_t process); m_task_t MSG_task_create(const char *name, long double compute_duration, long double message_size, void *data); void *MSG_task_get_data(m_task_t task); +m_process_t MSG_task_get_sender(m_task_t task); MSG_error_t MSG_task_destroy(m_task_t task); MSG_error_t MSG_task_get(m_task_t * task, m_channel_t channel); @@ -79,6 +80,7 @@ MSG_error_t MSG_task_put(m_task_t task, m_host_t dest, m_channel_t channel); MSG_error_t MSG_task_execute(m_task_t task); int MSG_task_Iprobe(m_channel_t channel); +int MSG_task_probe_from(m_channel_t channel); MSG_error_t MSG_process_sleep(long double nb_sec); MSG_error_t MSG_get_errno(void);