1
1
This commit was SVN r7420.
Этот коммит содержится в:
George Bosilca 2005-09-18 12:34:29 +00:00
родитель 9da5fc2d65
Коммит a7db1763e2
20 изменённых файлов: 145 добавлений и 144 удалений

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

@ -169,7 +169,8 @@ static inline int32_t ompi_ddt_get_extent( const ompi_datatype_t* pData, long* l
{ *lb = pData->lb; *extent = pData->ub - pData->lb; return 0; }
static inline int32_t ompi_ddt_get_true_extent( const ompi_datatype_t* pData, long* true_lb, long* true_extent)
{ *true_lb = pData->true_lb; *true_extent = (pData->true_ub - pData->true_lb); return 0; }
static inline int32_t ompi_ddt_get_size( const ompi_datatype_t* pData, long* size )
{ *size = pData->size; return 0; }
/*
* This function return true (1) if the datatype representation depending on the count
* is contiguous in the memory. And false (0) otherwise.