1
1

Merge pull request #685 from rhc54/topic/fence

This is the third time I am fixing this - I have no idea who or why this is being reset.
Этот коммит содержится в:
rhc54 2015-07-02 09:11:07 -05:00
родитель 6356c4b113 861fe1d9dd
Коммит 71fd76fc7c

Просмотреть файл

@ -280,14 +280,8 @@ typedef void (*opal_pmix_cbfunc_t)(int status, opal_value_t *kv, void *cbdata);
* that takes into account directives and availability of
* non-blocking operations
*/
#define OPAL_FENCE(p, s, cf, cd) \
do { \
if (opal_pmix_use_collective || NULL == opal_pmix.fence_nb) { \
opal_pmix.fence((p), (s)); \
} else { \
opal_pmix.fence_nb((p), (s), (cf), (cd)); \
} \
} while(0);
#define OPAL_FENCE(p, s, cf, cd) \
opal_pmix.fence((p), (s));
/* callback handler for errors */
typedef void (*opal_pmix_errhandler_fn_t)(int error);