X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=src%2Frculfhash-mm-chunk.c;fp=src%2Frculfhash-mm-chunk.c;h=9273ac9755c295cf29d5006698827da821ad2ef3;hp=a7a9b765b4c2c734389b869fc8c4f0ceb7e46281;hb=014775106c60f02818ca755b331f887030bd440f;hpb=2a27e9319bacc9bc98f38afb7e4f050601ab979b diff --git a/src/rculfhash-mm-chunk.c b/src/rculfhash-mm-chunk.c index a7a9b76..9273ac9 100644 --- a/src/rculfhash-mm-chunk.c +++ b/src/rculfhash-mm-chunk.c @@ -21,6 +21,7 @@ */ #include +#include #include static @@ -29,14 +30,14 @@ void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order) if (order == 0) { ht->tbl_chunk[0] = calloc(ht->min_nr_alloc_buckets, sizeof(struct cds_lfht_node)); - assert(ht->tbl_chunk[0]); + urcu_posix_assert(ht->tbl_chunk[0]); } else if (order > ht->min_alloc_buckets_order) { unsigned long i, len = 1UL << (order - 1 - ht->min_alloc_buckets_order); for (i = len; i < 2 * len; i++) { ht->tbl_chunk[i] = calloc(ht->min_nr_alloc_buckets, sizeof(struct cds_lfht_node)); - assert(ht->tbl_chunk[i]); + urcu_posix_assert(ht->tbl_chunk[i]); } } /* Nothing to do for 0 < order && order <= ht->min_alloc_buckets_order */