1
1
use the appropriate 64 bits type otherwise data gets incorrectly
truncated on big endian arch
Этот коммит содержится в:
Gilles Gouaillardet 2014-10-15 17:17:09 +09:00
родитель ab22dcb875
Коммит 5c81658d58

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

@ -388,7 +388,7 @@ static int native_fence(opal_process_name_t *procs, size_t nprocs)
opal_value_t *kp; opal_value_t *kp;
opal_identifier_t id; opal_identifier_t id;
size_t i; size_t i;
uint32_t np; uint64_t np;
opal_output_verbose(2, opal_pmix_base_framework.framework_output, opal_output_verbose(2, opal_pmix_base_framework.framework_output,
"%s pmix:native executing fence on %u procs", "%s pmix:native executing fence on %u procs",
@ -562,7 +562,7 @@ static void fencenb_cbfunc(opal_buffer_t *buf, void *cbdata)
opal_value_t *kp; opal_value_t *kp;
opal_identifier_t id; opal_identifier_t id;
size_t i; size_t i;
uint32_t np; uint64_t np;
/* get the number of contributors */ /* get the number of contributors */
cnt = 1; cnt = 1;