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 14:24:10 +0000 (09:24 -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 9273ac9755c295cf29d5006698827da821ad2ef3..76ec1bbd2d4c6e5660fe0087d1b7d3e824e1017b 100644 (file)
@@ -22,7 +22,7 @@
 
 #include <stddef.h>
 #include <urcu/assert.h>
-#include <rculfhash-internal.h>
+#include "rculfhash-internal.h"
 
 static
 void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order)
index a182a838867b9388a193845c856539bdf892955a..bbc401589a0c176cdffbd7111826248cb7e92b06 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 #include <urcu/assert.h>
-#include <rculfhash-internal.h>
+#include "rculfhash-internal.h"
 
 static
 void cds_lfht_alloc_bucket_table(struct cds_lfht *ht, unsigned long order)
index a41cac83a2f4fdc202b1b1821b98312f58d83018..5391d28e923a0a9b44909f3b8711692f36f4edbf 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.026445 seconds and 4 git commands to generate.