From c5d3ee5a5f7ba5792e77528164e81d1a0fc86738 Mon Sep 17 00:00:00 2001 From: valentin petrov Date: Thu, 27 Jan 2022 21:20:58 +0300 Subject: [PATCH] CORE: clarify ctx_cfg_modify semantics (#403) (#408) Co-authored-by: Manjunath Gorentla Venkata Signed-off-by: Valentin Petrov Co-authored-by: Manjunath Gorentla Venkata --- src/ucc/api/ucc.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/ucc/api/ucc.h b/src/ucc/api/ucc.h index e27b30a8df..08fea024c8 100644 --- a/src/ucc/api/ucc.h +++ b/src/ucc/api/ucc.h @@ -1026,10 +1026,11 @@ void ucc_context_config_print(const ucc_context_config_h config, FILE *stream, * @brief The @ref ucc_context_config_modify routine modifies the runtime configuration * of UCC context (optionally for a given CLS) * - * @param [in] config Pointer to the configuration descriptor to be modified - * @param [in] cls Comma separated list of CLS or NULL. If NULL then core context config is modified. - * @param [in] name Configuration variable to be modified - * @param [in] value Configuration value to set + * @param [in] config Pointer to the configuration descriptor to be modified + * @param [in] component CL/TL component (e.g. "tl/ucp" or "cl/basic") or NULL. + If NULL then core context config is modified. + * @param [in] name Configuration variable to be modified + * @param [in] value Configuration value to set * * @parblock * @@ -1044,7 +1045,7 @@ void ucc_context_config_print(const ucc_context_config_h config, FILE *stream, */ ucc_status_t ucc_context_config_modify(ucc_context_config_h config, - const char *cls, const char *name, + const char *component, const char *name, const char *value); /**