From b2def99db5512a34d4c6b184f6e1cec1f6359ea3 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 23 Dec 2017 10:45:21 +0100 Subject: [PATCH] fix some doxygen warnings --- src/kernel/lmm/maxmin.cpp | 2 -- src/kernel/lmm/maxmin.hpp | 4 ++-- src/simix/smx_network.cpp | 7 ++++++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/kernel/lmm/maxmin.cpp b/src/kernel/lmm/maxmin.cpp index 6380a5a5f2..633dc21b66 100644 --- a/src/kernel/lmm/maxmin.cpp +++ b/src/kernel/lmm/maxmin.cpp @@ -955,8 +955,6 @@ void System::remove_all_modified_set() * * If the resource is not shared (ie in FATPIPE mode), then the load is the max (not the sum) of all resource usages * located on this resource. - * - * \param cnst the lmm_constraint_t associated to the resource */ double Constraint::get_usage() const { diff --git a/src/kernel/lmm/maxmin.hpp b/src/kernel/lmm/maxmin.hpp index 608d6f4ad3..f302f2f249 100644 --- a/src/kernel/lmm/maxmin.hpp +++ b/src/kernel/lmm/maxmin.hpp @@ -230,7 +230,7 @@ public: /** * @brief Sets the concurrency limit for this constraint - * @param concurrency_limit The concurrency limit to use for this constraint + * @param limit The concurrency limit to use for this constraint */ void set_concurrency_limit(int limit) { @@ -353,7 +353,7 @@ public: /** * @brief Set the concurrent share of the variable - * @param concurrency_share The new concurrency share + * @param value The new concurrency share */ void set_concurrency_share(short int value) { concurrency_share = value; } diff --git a/src/simix/smx_network.cpp b/src/simix/smx_network.cpp index b45565785f..ea92bfd760 100644 --- a/src/simix/smx_network.cpp +++ b/src/simix/smx_network.cpp @@ -30,7 +30,12 @@ static void SIMIX_comm_start(simgrid::kernel::activity::CommImplPtr synchro); /** * \brief Checks if there is a communication activity queued in a deque matching our needs + * \param deque where to search into * \param type The type of communication we are looking for (comm_send, comm_recv) + * \param match_fun the function to apply + * \param this_user_data additional parameter to the match_fun + * \param my_synchro what to compare against + * \param remove_matching whether or not to clean the found object from the queue * \return The communication activity if found, nullptr otherwise */ static simgrid::kernel::activity::CommImplPtr @@ -445,7 +450,7 @@ void SIMIX_waitany_remove_simcall_from_actions(smx_simcall_t simcall) /** * \brief Starts the simulation of a communication synchro. - * \param synchro the communication synchro + * \param comm the communication that will be started */ static inline void SIMIX_comm_start(simgrid::kernel::activity::CommImplPtr comm) { -- 2.20.1