1
1

snprintf does not really do what we expect. In some situations it will write

more than we have asked for (on my G5). Anyway now I hope I have enought memory to printout
the full description of the datatype.

This commit was SVN r5690.
Этот коммит содержится в:
George Bosilca 2005-05-11 21:30:56 +00:00
родитель c477907166
Коммит 4ef1d70034

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

@ -546,7 +546,9 @@ static int __dump_data_desc( dt_elem_desc_t* pDesc, int nbElems, char* ptr, size
for( i = 0; i < nbElems; i++ ) {
index += _dump_data_flags( pDesc->elem.common.flags, ptr + index, length );
if( length <= index ) break;
index += snprintf( ptr + index, length - index, "%15s ", ompi_ddt_basicDatatypes[pDesc->elem.common.type]->name );
if( length <= index ) break;
if( DT_LOOP == pDesc->elem.common.type )
index += snprintf( ptr + index, length - index, "%d times the next %d elements extent %d\n",
(int)pDesc->loop.loops, (int)pDesc->loop.items,
@ -585,10 +587,13 @@ static inline int __dt_contain_basic_datatypes( const ompi_datatype_t* pData, ch
void ompi_ddt_dump( const ompi_datatype_t* pData )
{
size_t length = 10 * 1024;
size_t length;
int index = 0;
char buffer[1024*10];
char* buffer;
length = pData->opt_desc.used + pData->desc.used;
length = length * 100 + 500;
buffer = (char*)malloc( length );
index += snprintf( buffer, length - index, "Datatype %p size %ld align %d id %d length %d used %d\n\
true_lb %ld true_ub %ld (true_extent %ld) lb %ld ub %ld (extent %ld)\n \
nbElems %d loops %d flags %X (",
@ -617,4 +622,5 @@ void ompi_ddt_dump( const ompi_datatype_t* pData )
}
buffer[index] = '\0'; /* make sure we end the string with 0 */
ompi_output( 0, "%s\n", buffer );
free(buffer);
}