X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Fcommon%2Fhashtable%2Frculfhash.c;h=fb44640bdc4946c8ca7c1f8a540be38f40346e12;hb=63ee55559347fe15568f094130ebf579ed498d70;hp=ee09afd1b7201df7c1e6ea4528686cb593e8c96e;hpb=8f0044bfed9f5ca51eab51478f483f92cc8f84a7;p=lttng-tools.git diff --git a/src/common/hashtable/rculfhash.c b/src/common/hashtable/rculfhash.c index ee09afd1b..fb44640bd 100644 --- a/src/common/hashtable/rculfhash.c +++ b/src/common/hashtable/rculfhash.c @@ -278,6 +278,8 @@ #include "rculfhash-internal.h" #include "urcu-flavor.h" +#include + /* * We need to lock pthread exit, which deadlocks __nptl_setxid in the runas * clone. This work-around will be allowed to be removed when runas.c gets @@ -1781,7 +1783,7 @@ int cds_lfht_destroy(struct cds_lfht *ht, pthread_attr_t **attr) } #endif while (uatomic_read(&ht->in_progress_resize)) - poll(NULL, 0, 100); /* wait for 100ms */ + (void) poll(NULL, 0, 100); /* wait for 100ms */ ret = cds_lfht_delete_bucket(ht); if (ret) return ret; @@ -1981,7 +1983,7 @@ void __cds_lfht_resize_lazy_launch(struct cds_lfht *ht) uatomic_dec(&ht->in_progress_resize); return; } - work = malloc(sizeof(*work)); + work = zmalloc(sizeof(*work)); if (work == NULL) { dbg_printf("error allocating resize work, bailing out\n"); uatomic_dec(&ht->in_progress_resize);