lttng-dev.lists.lttng.org archive mirror
 help / color / mirror / Atom feed
* Horrible hack to make C++ link to liburcu
@ 2016-03-04 20:32 Paul E. McKenney
  0 siblings, 0 replies; 3+ messages in thread
From: Paul E. McKenney @ 2016-03-04 20:32 UTC (permalink / raw)
  To: lttng-dev; +Cc: jiangshanlai

Hello!

Still working with the C++ standards committee to add RCU to C++, and
of course one step on that path is to make C++ programs build against
liburcu.  The following hack-patch makes this work by disabling C++ access
to wfcqueue and by making C++ see the rcu_head ->next field as a void *.

This supports prototyping, but what would be the real fix?

							Thanx, Paul

------------------------------------------------------------------------

diff --git a/urcu-call-rcu.h b/urcu-call-rcu.h
index 339ebacc3f7c..d37c49e9d958 100644
--- a/urcu-call-rcu.h
+++ b/urcu-call-rcu.h
@@ -32,7 +32,9 @@
 #include <stdlib.h>
 #include <pthread.h>
 
+#ifndef __cplusplus
 #include <urcu/wfcqueue.h>
+#endif
 
 #ifdef __cplusplus
 extern "C" {
@@ -57,7 +59,11 @@ struct call_rcu_data;
  */
 
 struct rcu_head {
+#ifdef __cplusplus
+	void *next;
+#else
 	struct cds_wfcq_node next;
+#endif
 	void (*func)(struct rcu_head *head);
 };

^ permalink raw reply related	[flat|nested] 3+ messages in thread
[parent not found: <20160304203254.GA2033@linux.vnet.ibm.com>]

end of thread, other threads:[~2016-03-08  0:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-04 20:32 Horrible hack to make C++ link to liburcu Paul E. McKenney
     [not found] <20160304203254.GA2033@linux.vnet.ibm.com>
2016-03-05 15:10 ` Mathieu Desnoyers
     [not found] ` <410832705.17244.1457190630579.JavaMail.zimbra@efficios.com>
2016-03-08  0:31   ` Mathieu Desnoyers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).