1
1

The standard does not imply that the contents of the buffer should be defined/addressable at this point. Remove the buffer checks in these functions.

This commit was SVN r23988.
Этот коммит содержится в:
Shiqing Fan 2010-11-03 09:36:24 +00:00
родитель a7dc32afb0
Коммит 066d5fb9d7
5 изменённых файлов: 0 добавлений и 5 удалений

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

@ -45,7 +45,6 @@ int MPI_Bsend_init(void *buf, int count, MPI_Datatype type,
MEMCHECKER(
memchecker_datatype(type);
memchecker_call(&opal_memchecker_base_isdefined, buf, count, type);
memchecker_comm(comm);
);

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

@ -44,7 +44,6 @@ int MPI_Recv_init(void *buf, int count, MPI_Datatype type, int source,
MEMCHECKER(
memchecker_datatype(type);
memchecker_call(&opal_memchecker_base_isaddressable, buf, count, type);
memchecker_comm(comm);
);

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

@ -46,7 +46,6 @@ int MPI_Rsend_init(void *buf, int count, MPI_Datatype type,
MEMCHECKER(
memchecker_datatype(type);
memchecker_call(&opal_memchecker_base_isdefined, buf, count, type);
memchecker_comm(comm);
);

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

@ -46,7 +46,6 @@ int MPI_Send_init(void *buf, int count, MPI_Datatype type,
MEMCHECKER(
memchecker_datatype(type);
memchecker_call(&opal_memchecker_base_isdefined, buf, count, type);
memchecker_comm(comm);
);

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

@ -46,7 +46,6 @@ int MPI_Ssend_init(void *buf, int count, MPI_Datatype type,
MEMCHECKER(
memchecker_datatype(type);
memchecker_call(&opal_memchecker_base_isdefined, buf, count, type);
memchecker_comm(comm);
);