@@ -58,8 +58,6 @@ static int cray_resolve_peers(const char *nodename,
5858static int cray_resolve_nodes (opal_jobid_t jobid , char * * nodelist );
5959static int cray_put (opal_pmix_scope_t scope , opal_value_t * kv );
6060static 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 );
6361static int cray_commit (void );
6462static 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-
746738static 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