1
1
Этот коммит содержится в:
Ralph Castain 2014-10-09 10:45:25 -07:00
родитель 1cabd73522
Коммит ce8e33447f

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

@ -76,6 +76,10 @@ typedef struct opal_hash_table_t opal_hash_table_t;
OPAL_DECLSPEC int opal_hash_table_init(opal_hash_table_t* ht, size_t table_size);
/* this could be the new init if people wanted a more general API */
OPAL_DECLSPEC int opal_hash_table_init2(opal_hash_table_t* ht, size_t estimated_max_size,
int density_numer, int density_denom,
int growth_numer, int growth_denom);
/**
* Returns the number of elements currently stored in the table.