1
1
This commit was SVN r13510.
Этот коммит содержится в:
George Bosilca 2007-02-06 16:53:44 +00:00
родитель ebbc37584f
Коммит 575075ea77

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

@ -79,7 +79,7 @@ int ompi_pointer_array_add(ompi_pointer_array_t *table, void *ptr)
if (table->number_free == 0) {
/* need to grow table */
if (!grow_table(table,
(NULL == table->addr ? TABLE_INIT : table->size * TABLE_GROW),
(NULL == table->addr ? TABLE_INIT : table->size * TABLE_GROW),
OMPI_FORTRAN_HANDLE_MAX)) {
OPAL_THREAD_UNLOCK(&(table->lock));
return OMPI_ERR_OUT_OF_RESOURCE;
@ -313,7 +313,7 @@ static bool grow_table(ompi_pointer_array_t *table, size_t soft, size_t hard)
return false;
}
/* We've already established (above) that the arithimetic
/* We've already established (above) that the arithmetic
below will be less than OMPI_FORTRAN_HANDLE_MAX */
new_size_int = (int) new_size;