Skip to content

Commit

Permalink
common/libkvs: Change "namespace" to "name_space"
Browse files Browse the repository at this point in the history
As done in 658e4f5.
  • Loading branch information
chu11 committed Feb 9, 2018
1 parent e2f748a commit 113c997
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/common/libkvs/kvs.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ flux_future_t *flux_kvs_namespace_remove (flux_t *h, const char *name_space);
* - if never set, the value from the environment variable
* FLUX_KVS_NAMESPACE is used.
* - if FLUX_KVS_NAMESPACE is not set, KVS_PRIMARY_NAMESPACE is assumed.
*
* NOTE: Take care to avoid conflicting with C++'s keyword "namespace"
* in the external interfaces.
*/
int flux_kvs_set_namespace (flux_t *h, const char *namespace);
int flux_kvs_set_namespace (flux_t *h, const char *name_space);
const char *flux_kvs_get_namespace (flux_t *h);

/* Synchronization:
Expand Down

0 comments on commit 113c997

Please sign in to comment.