1
1

Correct the bit mask to properly set the binding policy

This commit was SVN r21934.
Этот коммит содержится в:
Ralph Castain 2009-09-03 17:58:23 +00:00
родитель 9b47a46ed9
Коммит 17444243f7

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

@ -296,7 +296,7 @@ typedef uint16_t orte_mapping_policy_t;
#define ORTE_XSET_BINDING_POLICY(pol) \
do { \
orte_mapping_policy_t tmp; \
tmp = (orte_default_mapping_policy & 0xff00) & ~(pol); \
tmp = (orte_default_mapping_policy & 0x00ff) & ~(pol); \
if (0 == tmp) { \
ORTE_SET_BINDING_POLICY((pol)); \
} \