doc/examples: cds_list_add_tail_rcu
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 21 Jun 2013 17:43:43 +0000 (13:43 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 21 Jun 2013 18:04:32 +0000 (14:04 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
.gitignore
doc/examples/Makefile.am
doc/examples/list/Makefile
doc/examples/list/Makefile.cds_list_add_tail_rcu [new file with mode: 0644]
doc/examples/list/cds_list_add_tail_rcu.c [new file with mode: 0644]

index ebacc52289d02b838672a6c36e6531dcd5e39972..c4c3bdd137a6336814466a8acdf54ec219ab56f5 100644 (file)
@@ -74,6 +74,7 @@ tests/*.log
 *.so
 
 doc/examples/list/cds_list_add_rcu
 *.so
 
 doc/examples/list/cds_list_add_rcu
+doc/examples/list/cds_list_add_tail_rcu
 doc/examples/list/cds_list_del_rcu
 
 #automake
 doc/examples/list/cds_list_del_rcu
 
 #automake
index 1d8128733793b4679e9d7237d77e9bcc305c26fd..cae3a02915470652ae88591545ff5dd372a77997 100644 (file)
@@ -14,8 +14,10 @@ doc_examples_listdir = ${doc_examplesdir}/list
 dist_doc_examples_list_DATA = \
        list/Makefile \
        list/Makefile.cds_list_add_rcu \
 dist_doc_examples_list_DATA = \
        list/Makefile \
        list/Makefile.cds_list_add_rcu \
+       list/Makefile.cds_list_add_tail_rcu \
        list/Makefile.cds_list_del_rcu \
        list/cds_list_add_rcu.c \
        list/Makefile.cds_list_del_rcu \
        list/cds_list_add_rcu.c \
+       list/cds_list_add_tail_rcu.c \
        list/cds_list_del_rcu.c
 
 if NO_SHARED
        list/cds_list_del_rcu.c
 
 if NO_SHARED
index 8e2279e2a378b7b25dfee1501bb4f2c884bbcdaf..75076500e8c55364585901cd754fe6db5d6a3f0b 100644 (file)
 
 all:
        $(MAKE) -f Makefile.cds_list_add_rcu
 
 all:
        $(MAKE) -f Makefile.cds_list_add_rcu
+       $(MAKE) -f Makefile.cds_list_add_tail_rcu
        $(MAKE) -f Makefile.cds_list_del_rcu
 
 .PHONY: clean
 clean:
        $(MAKE) -f Makefile.cds_list_add_rcu clean
        $(MAKE) -f Makefile.cds_list_del_rcu
 
 .PHONY: clean
 clean:
        $(MAKE) -f Makefile.cds_list_add_rcu clean
+       $(MAKE) -f Makefile.cds_list_add_tail_rcu clean
        $(MAKE) -f Makefile.cds_list_del_rcu clean
        $(MAKE) -f Makefile.cds_list_del_rcu clean
diff --git a/doc/examples/list/Makefile.cds_list_add_tail_rcu b/doc/examples/list/Makefile.cds_list_add_tail_rcu
new file mode 100644 (file)
index 0000000..a3b5a73
--- /dev/null
@@ -0,0 +1,20 @@
+# Copyright (C) 2013  Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+#
+# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
+# OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
+#
+# Permission is hereby granted to use or copy this program for any
+# purpose,  provided the above notices are retained on all copies.
+# Permission to modify the code and to distribute modified code is
+# granted, provided the above notices are retained, and a notice that
+# the code was modified is included with the above copyright notice.
+#
+# This makefile is purposefully kept simple to support GNU and BSD make.
+
+EXAMPLE_NAME = cds_list_add_tail_rcu
+
+SOURCES = $(EXAMPLE_NAME).c
+OBJECTS = $(EXAMPLE_NAME).o
+BINARY = $(EXAMPLE_NAME)
+
+include ../Makefile.examples.template
diff --git a/doc/examples/list/cds_list_add_tail_rcu.c b/doc/examples/list/cds_list_add_tail_rcu.c
new file mode 100644 (file)
index 0000000..53784c9
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2013  Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ *
+ * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
+ * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
+ *
+ * Permission is hereby granted to use or copy this program for any
+ * purpose,  provided the above notices are retained on all copies.
+ * Permission to modify the code and to distribute modified code is
+ * granted, provided the above notices are retained, and a notice that
+ * the code was modified is included with the above copyright notice.
+ *
+ * This example shows how to add into tail of a linked-list safely
+ * against concurrent RCU traversals.
+ */
+
+#include <stdio.h>
+
+#include <urcu.h>              /* Userspace RCU flavor */
+#include <urcu/rculist.h>      /* RCU list */
+#include <urcu/compiler.h>     /* For CAA_ARRAY_SIZE */
+
+/*
+ * Nodes populated into the list.
+ */
+struct mynode {
+       int value;                      /* Node content */
+       struct cds_list_head node;      /* Linked-list chaining */
+};
+
+int main(int argc, char **argv)
+{
+       int values[] = { -5, 42, 36, 24, };
+       CDS_LIST_HEAD(mylist);          /* Defines an empty list head */
+       unsigned int i;
+       int ret = 0;
+       struct mynode *node;
+
+       /*
+        * Adding nodes to the linked-list. Safe against concurrent
+        * RCU traversals, require mutual exclusion with list updates.
+        */
+       for (i = 0; i < CAA_ARRAY_SIZE(values); i++) {
+               node = malloc(sizeof(*node));
+               if (!node) {
+                       ret = -1;
+                       goto end;
+               }
+               node->value = values[i];
+               cds_list_add_tail_rcu(&node->node, &mylist);
+       }
+
+       /*
+        * Just show the list content. This is _not_ an RCU-safe
+        * iteration on the list.
+        */
+       printf("mylist content:");
+       cds_list_for_each_entry(node, &mylist, node) {
+               printf(" %d", node->value);
+       }
+       printf("\n");
+end:
+       return ret;
+}
This page took 0.027254 seconds and 4 git commands to generate.