Installed headers should only include other headers with < >
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 10 Jun 2011 20:11:30 +0000 (16:11 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 10 Jun 2011 20:11:30 +0000 (16:11 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Makefile.am
urcu-bp.h
urcu-qsbr.h
urcu.h

index 6a05346f3b108992225f90c0c785ac2eee366871..7f52ca06ed6d34ab97c9a47a27820b456dab4e22 100644 (file)
@@ -5,7 +5,8 @@ AM_CFLAGS=-Wall
 
 SUBDIRS = . tests
 
-include_HEADERS = urcu.h $(top_srcdir)/urcu-*.h
+include_HEADERS = urcu.h urcu-bp.h urcu-call-rcu.h urcu-defer.h \
+               urcu-pointer.h urcu-qsbr.h
 nobase_dist_include_HEADERS = urcu/compiler.h urcu/hlist.h urcu/list.h \
                urcu/rculist.h urcu/rcuhlist.h urcu/system.h urcu/futex.h \
                urcu/uatomic/generic.h urcu/arch/generic.h urcu/wfstack.h \
index 763eb058695b3f47b94de5dc86dd44603bf960ca..09ee9c9ddeed6161134fc2d26ad499fde7056202 100644 (file)
--- a/urcu-bp.h
+++ b/urcu-bp.h
@@ -47,7 +47,7 @@
 extern "C" {
 #endif
 
-#include "urcu/map/urcu-bp.h"
+#include <urcu/map/urcu-bp.h>
 
 /*
  * Important !
@@ -118,7 +118,7 @@ static inline void rcu_init(void)
 }
 #endif
 
-#include "urcu-call-rcu.h"
-#include "urcu-defer.h"
+#include <urcu-call-rcu.h>
+#include <urcu-defer.h>
 
 #endif /* _URCU_BP_H */
index 20dbf47b3aced49cfea55dd9c76e4ad69ed525cb..b362304578a50a93f407d2a6cf97dc143340de30 100644 (file)
@@ -41,7 +41,7 @@
 extern "C" {
 #endif 
 
-#include "urcu/map/urcu-qsbr.h"
+#include <urcu/map/urcu-qsbr.h>
 
 /*
  * Important !
@@ -125,7 +125,7 @@ extern void rcu_unregister_thread(void);
 }
 #endif
 
-#include "urcu-call-rcu.h"
-#include "urcu-defer.h"
+#include <urcu-call-rcu.h>
+#include <urcu-defer.h>
 
 #endif /* _URCU_QSBR_H */
diff --git a/urcu.h b/urcu.h
index d4c87535d27caaac96111b946305454d884a676f..5728c07d3ce4cac45a11e4540c6c5f3a934a6837 100644 (file)
--- a/urcu.h
+++ b/urcu.h
@@ -44,7 +44,7 @@
 extern "C" {
 #endif 
 
-#include "urcu/map/urcu.h"
+#include <urcu/map/urcu.h>
 
 /*
  * Important !
@@ -111,7 +111,7 @@ extern void rcu_init(void);
 }
 #endif
 
-#include "urcu-call-rcu.h"
-#include "urcu-defer.h"
+#include <urcu-call-rcu.h>
+#include <urcu-defer.h>
 
 #endif /* _URCU_H */
This page took 0.026676 seconds and 4 git commands to generate.