Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORE: clarify ctx_cfg_modify semantics (#403) #408

Merged
merged 1 commit into from
Jan 27, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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