From 3f2d29b975f6d250065ce065ea091c3f826721f6 Mon Sep 17 00:00:00 2001 From: mquinson Date: Fri, 31 Dec 2004 17:00:42 +0000 Subject: [PATCH 1/1] Add the prototypes git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@723 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- include/msg/msg.h | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.20.1