From: Gavin Ray Date: Mon, 5 Dec 2022 02:07:17 +0000 (+0000) Subject: rculfhash: Include rculfhash-internal.h from local directory X-Git-Tag: v0.14.0~11 X-Git-Url: https://git.lttng.org/?p=userspace-rcu.git;a=commitdiff_plain;h=0d0409b100fbb84ee8303c5dca376aca0f187745 rculfhash: Include rculfhash-internal.h from local directory Use double quotes rather than angle brackets to include this local header file. This fixes build scenarios where the liburcu build is used from cmake. Signed-off-by: Mathieu Desnoyers Change-Id: Iad6c9765ecc409c8df3a659975c97a3c068d5c0a --- diff --git a/src/rculfhash-mm-chunk.c b/src/rculfhash-mm-chunk.c index 9273ac9..76ec1bb 100644 --- a/src/rculfhash-mm-chunk.c +++ b/src/rculfhash-mm-chunk.c @@ -22,7 +22,7 @@ #include #include -#include +#include "rculfhash-internal.h" static void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order) diff --git a/src/rculfhash-mm-order.c b/src/rculfhash-mm-order.c index a182a83..bbc4015 100644 --- a/src/rculfhash-mm-order.c +++ b/src/rculfhash-mm-order.c @@ -22,7 +22,7 @@ */ #include -#include +#include "rculfhash-internal.h" static void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order) diff --git a/src/rculfhash.c b/src/rculfhash.c index a41cac8..5391d28 100644 --- a/src/rculfhash.c +++ b/src/rculfhash.c @@ -274,10 +274,10 @@ #include #include #include -#include #include #include #include +#include "rculfhash-internal.h" #include "workqueue.h" #include "urcu-die.h" #include "urcu-utils.h"