Skip to content

Commit

Permalink
CORE: clarify ctx_cfg_modify semantics (#403) (#408)
Browse files Browse the repository at this point in the history
Co-authored-by: Manjunath Gorentla Venkata <[email protected]>
Signed-off-by: Valentin Petrov <[email protected]>

Co-authored-by: Manjunath Gorentla Venkata <[email protected]>
  • Loading branch information
valentin petrov and manjugv authored Jan 27, 2022
1 parent 71eee8e commit c5d3ee5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/ucc/api/ucc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand All @@ -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);

/**
Expand Down

0 comments on commit c5d3ee5

Please sign in to comment.