From: Martin Quinson Date: Mon, 16 May 2016 06:04:03 +0000 (+0200) Subject: doxygen fixups X-Git-Tag: v3_14~1217 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f8fa7dc50d79eab65c7046d45872a3251a80bcf3 doxygen fixups --- diff --git a/examples/msg/README.doc b/examples/msg/README.doc index 639f786334..d36331117c 100644 --- a/examples/msg/README.doc +++ b/examples/msg/README.doc @@ -288,9 +288,9 @@ top of the example file). @example examples/msg/trace-categories/trace-categories.c @example examples/msg/trace-masterworker/trace-masterworker.c @example examples/msg/trace-process-migration/trace-process-migration.c -@example examples/msg/trace-user-variables/trace-user-variables.c +@example examples/msg/trace-host-user-variables/trace-host-user-variables.c @example examples/msg/trace-link-user-variables/trace-link-user-variables.c -@example examples/msg/trace-link-srcdst-user-variables/trace-link-srcdst-user-variables.c +@example examples/msg/trace-route-user-variables/trace-route-user-variables.c @example examples/msg/network-ns3/network-ns3.c @@ -302,10 +302,10 @@ top of the example file). @example examples/msg/actions-storage/actions-storage.c @example examples/msg/app-pmm/app-pmm.c -@example examples/msg/dht-chord +@example examples/msg/dht-chord/dht-chord.c @example examples/msg/task-priority/task-priority.c -@example examples/msg/properties/properties.c +@example examples/msg/platform-properties/platform-properties.c */ diff --git a/src/simdag/sd_task.cpp b/src/simdag/sd_task.cpp index 65e3fae9c1..48d0ed706b 100644 --- a/src/simdag/sd_task.cpp +++ b/src/simdag/sd_task.cpp @@ -656,13 +656,13 @@ void SD_task_dependency_add(const char *name, void *data, SD_task_t src, SD_task } /** - * \brief Returns the name given as input when dependency has been created.. + * \brief Returns the name given as input when dependency has been created. * * \param src a task * \param dst a task depending on \a src - * */ -const char *SD_task_dependency_get_name(SD_task_t src, SD_task_t dst){ +const char *SD_task_dependency_get_name(SD_task_t src, SD_task_t dst) +{ unsigned int i; SD_dependency_t dependency; diff --git a/src/surf/maxmin.cpp b/src/surf/maxmin.cpp index 0598653c25..0ea8e653b5 100644 --- a/src/surf/maxmin.cpp +++ b/src/surf/maxmin.cpp @@ -955,7 +955,7 @@ void lmm_solve(lmm_system_t sys) * * Makes var->bound equal to bound. Whenever this function is called a change is signed in the system. To * avoid false system changing detection it is a good idea to test (bound != 0) before calling it. -*/ + */ void lmm_update_variable_bound(lmm_system_t sys, lmm_variable_t var, double bound) { sys->modified = 1; @@ -973,10 +973,7 @@ int lmm_concurrency_slack(lmm_constraint_t cnstr){ return cnstr->concurrency_limit - cnstr->concurrency_current; } -/** \brief Measure the minimum concurrency slack across all constraints where var is involved - * - * \param The variable to check for - */ +/** \brief Measure the minimum concurrency slack across all constraints where the given var is involved */ int lmm_cnstrs_min_concurrency_slack(lmm_variable_t var){ int i; //FIXME MARTIN: Replace by infinite value std::numeric_limits::(max)(), or something better within Simgrid?