Add `urcu_posix_assert()` as `assert()` replacement
[urcu.git] / src / rculfhash-internal.h
index d7cec95a10e286f4693c91925e61441146196ebe..e17210b8624cf7fd370ef88f591174e100085548 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <urcu/assert.h>
 #include <urcu/rculfhash.h>
 #include <stdio.h>
+#include <stdlib.h>
 
 #ifdef DEBUG
 #define dbg_printf(fmt, args...)     printf("[debug rculfhash] " fmt, ## args)
@@ -82,7 +84,7 @@ struct cds_lfht {
         */
        pthread_mutex_t resize_mutex;   /* resize mutex: add/del mutex */
        pthread_attr_t *resize_attr;    /* Resize threads attributes */
-       unsigned int in_progress_resize, in_progress_destroy;
+       unsigned int in_progress_destroy;
        unsigned long resize_target;
        int resize_initiated;
 
@@ -168,7 +170,7 @@ struct cds_lfht *__default_alloc_cds_lfht(
        struct cds_lfht *ht;
 
        ht = calloc(1, cds_lfht_size);
-       assert(ht);
+       urcu_posix_assert(ht);
 
        ht->mm = mm;
        ht->bucket_at = mm->bucket_at;
This page took 0.023209 seconds and 4 git commands to generate.