Skip to content
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
10 changes: 1 addition & 9 deletions opal/mca/pmix/cray/pmix_cray.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ static int cray_resolve_peers(const char *nodename,
static int cray_resolve_nodes(opal_jobid_t jobid, char **nodelist);
static int cray_put(opal_pmix_scope_t scope, opal_value_t *kv);
static int cray_fence(opal_list_t *procs, int collect_data);
static int cray_fence_nb(opal_list_t *procs, int collect_data,
opal_pmix_op_cbfunc_t cbfunc, void *cbdata);
static int cray_commit(void);
static int cray_get(const opal_process_name_t *id,
const char *key, opal_list_t *info,
Expand Down Expand Up @@ -93,7 +91,7 @@ const opal_pmix_base_module_t opal_pmix_cray_module = {
.abort = cray_abort,
.commit = cray_commit,
.fence = cray_fence,
.fence_nb = cray_fence_nb,
.fence_nb = NULL,
.put = cray_put,
.get = cray_get,
.get_nb = cray_get_nb,
Expand Down Expand Up @@ -737,12 +735,6 @@ static int cray_fence(opal_list_t *procs, int collect_data)
return rc;
}

static int cray_fence_nb(opal_list_t *procs, int collect_data,
opal_pmix_op_cbfunc_t cbfunc, void *cbdata)
{
return OPAL_ERR_NOT_IMPLEMENTED;
}

static int cray_get(const opal_process_name_t *id, const char *key, opal_list_t *info, opal_value_t **kv)
{
int rc;
Expand Down