Skip to content

Commit f52dd51

Browse files
committed
Merge pull request #1600 from hppritcha/topic/pmix_fix_for_finalize
pmix/cray: set fence_nb to NULL
2 parents 743f426 + aa1d7b9 commit f52dd51

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

opal/mca/pmix/cray/pmix_cray.c

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ static int cray_resolve_peers(const char *nodename,
5858
static int cray_resolve_nodes(opal_jobid_t jobid, char **nodelist);
5959
static int cray_put(opal_pmix_scope_t scope, opal_value_t *kv);
6060
static int cray_fence(opal_list_t *procs, int collect_data);
61-
static int cray_fence_nb(opal_list_t *procs, int collect_data,
62-
opal_pmix_op_cbfunc_t cbfunc, void *cbdata);
6361
static int cray_commit(void);
6462
static int cray_get(const opal_process_name_t *id,
6563
const char *key, opal_list_t *info,
@@ -93,7 +91,7 @@ const opal_pmix_base_module_t opal_pmix_cray_module = {
9391
.abort = cray_abort,
9492
.commit = cray_commit,
9593
.fence = cray_fence,
96-
.fence_nb = cray_fence_nb,
94+
.fence_nb = NULL,
9795
.put = cray_put,
9896
.get = cray_get,
9997
.get_nb = cray_get_nb,
@@ -737,12 +735,6 @@ static int cray_fence(opal_list_t *procs, int collect_data)
737735
return rc;
738736
}
739737

740-
static int cray_fence_nb(opal_list_t *procs, int collect_data,
741-
opal_pmix_op_cbfunc_t cbfunc, void *cbdata)
742-
{
743-
return OPAL_ERR_NOT_IMPLEMENTED;
744-
}
745-
746738
static int cray_get(const opal_process_name_t *id, const char *key, opal_list_t *info, opal_value_t **kv)
747739
{
748740
int rc;

0 commit comments

Comments
 (0)