From: mquinson Date: Fri, 31 Dec 2004 17:00:42 +0000 (+0000) Subject: Add the prototypes X-Git-Tag: v3.3~4627 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3f2d29b975f6d250065ce065ea091c3f826721f6?hp=cf6d29fa983a462f7759856d3d01854b5ee79a70 Add the prototypes git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@723 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- 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);