X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=urcu%2Frculfhash.h;h=bc9f232d65deb6632f9c19a84dceb2a6e901a377;hb=f22dd01d7941170a1b1b0275344a6e6cd83dbcc6;hp=d8f2f5facff6d658573b073201ade5d67ad00a7c;hpb=7a9dcf9bf15667662e61b44c611a7f4c39b10dcf;p=urcu.git diff --git a/urcu/rculfhash.h b/urcu/rculfhash.h index d8f2f5f..bc9f232 100644 --- a/urcu/rculfhash.h +++ b/urcu/rculfhash.h @@ -21,6 +21,8 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * Include this file _after_ including your URCU flavor. */ #include @@ -97,8 +99,14 @@ struct cds_lfht *_cds_lfht_new(cds_lfht_hash_fct hash_fct, /* * cds_lfht_new - allocate a hash table. + * @hash_fct: the hashing function. + * @compare_fct: the key comparison function. + * @hash_seed: the seed for hash function. + * @init_size: number of nodes to allocate initially. Must be power of two. + * @flags: hash table creation flags (can be combined with bitwise or: '|'). + * 0: no flags. + * CDS_LFHT_AUTO_RESIZE: automatically resize hash table. * - * init_size must be power of two. * Return NULL on error. * Note: the RCU flavor must be already included before the hash table header. */