1
1

cosmetic: add comment with rationale for malloc.h include

This commit was SVN r28614.
Этот коммит содержится в:
Mike Dubman 2013-06-12 05:58:32 +00:00
родитель 9b1f32bf12
Коммит 9556310bd0

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

@ -38,6 +38,13 @@
#include <stdlib.h> #include <stdlib.h>
#include <stddef.h> #include <stddef.h>
#if BTL_OPENIB_MALLOC_HOOKS_ENABLED #if BTL_OPENIB_MALLOC_HOOKS_ENABLED
/*
* The include of malloc.h below breaks layers in OMPI
* The malloc hooks in newer glibc were deprecated, including stock malloc.h causes compilation erros
* So, we use internal malloc.h which does not cause compilation errors.
* Internally, OMPI uses built-in ptmalloc anyway
*
*/
#include "opal/mca/memory/linux/malloc.h" #include "opal/mca/memory/linux/malloc.h"
#endif #endif