1
1

Change the test memalign() call to use an alignment of 4 so that some

debuggers stop complaining. :-)

This commit was SVN r21744.
Этот коммит содержится в:
Jeff Squyres 2009-07-29 20:33:38 +00:00
родитель 69139e4171
Коммит cb653bc4e8

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

@ -108,7 +108,7 @@ static int ptmalloc2_open(void)
return OPAL_ERR_OUT_OF_RESOURCE;
}
free(p);
p = memalign(1, 1024 * 1024);
p = memalign(4, 1024 * 1024);
if (NULL == p) {
return OPAL_ERR_OUT_OF_RESOURCE;
}