From 9908ddf5017ffb660d481726418f1578cf1a1512 Mon Sep 17 00:00:00 2001 From: mquinson Date: Thu, 4 Feb 2010 20:46:54 +0000 Subject: [PATCH] Improve documentation after discussion with FS git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7058 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/simdag/sd_task.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/simdag/sd_task.c b/src/simdag/sd_task.c index 4d91e4bccb..e200d1d81d 100644 --- a/src/simdag/sd_task.c +++ b/src/simdag/sd_task.c @@ -240,10 +240,10 @@ SD_workstation_t* SD_task_get_workstation_list(SD_task_t task) } /** - * \brief Returns the total amount of a task + * \brief Returns the total amount of work contained in a task * * \param task a task - * \return the total amount of this task + * \return the total amount of work (computation or data transfer) for this task * \see SD_task_get_remaining_amount() */ double SD_task_get_amount(SD_task_t task) @@ -254,10 +254,10 @@ double SD_task_get_amount(SD_task_t task) } /** - * \brief Returns the remaining amount of a task + * \brief Returns the remaining amount work to do till the completion of a task * * \param task a task - * \return the remaining amount of this task + * \return the remaining amount of work (computation or data transfer) of this task * \see SD_task_get_amount() */ double SD_task_get_remaining_amount(SD_task_t task) -- 2.20.1