rculfhash: Include rculfhash-internal.h from local directory
authorGavin Ray <ray.gavin97@gmail.com>
Mon, 5 Dec 2022 02:07:17 +0000 (02:07 +0000)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 5 Dec 2022 16:04:33 +0000 (11:04 -0500)
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 <mathieu.desnoyers@efficios.com>
Change-Id: Iad6c9765ecc409c8df3a659975c97a3c068d5c0a

src/rculfhash-mm-chunk.c
src/rculfhash-mm-order.c
src/rculfhash.c

index a7a9b765b4c2c734389b869fc8c4f0ceb7e46281..5cd66625e574d8bf2ebc83bbaab1efc9cb0be855 100644 (file)
@@ -21,7 +21,9 @@
  */
 
 #include <stddef.h>
-#include <rculfhash-internal.h>
+#include <urcu/assert.h>
+
+#include "rculfhash-internal.h"
 
 static
 void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order)
index 20f3edd8ce37cf9a5abe88e18264ec1102759b53..3d3e31f82c22eeb1139b16e68e6a10dd19061c4d 100644 (file)
@@ -21,7 +21,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include <rculfhash-internal.h>
+#include <urcu/assert.h>
+
+#include "rculfhash-internal.h"
 
 static
 void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order)
index 95b13a2b39676cac0eb7ee6025696794273bbdc0..5b62e05a8ba6f5134036300ef168353beeaab67a 100644 (file)
 #include <urcu/compiler.h>
 #include <urcu/rculfhash.h>
 #include <urcu/static/urcu-signal-nr.h>
-#include <rculfhash-internal.h>
 #include <stdio.h>
 #include <pthread.h>
 #include <signal.h>
+#include "rculfhash-internal.h"
 #include "workqueue.h"
 #include "urcu-die.h"
 #include "urcu-utils.h"
This page took 0.026653 seconds and 4 git commands to generate.