doc/examples: add cds_wfcq_dequeue
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 21 Jun 2013 19:32:14 +0000 (15:32 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 21 Jun 2013 19:32:14 +0000 (15:32 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
.gitignore
doc/examples/Makefile.am
doc/examples/wfcqueue/Makefile [new file with mode: 0644]
doc/examples/wfcqueue/Makefile.cds_wfcq_dequeue [new file with mode: 0644]
doc/examples/wfcqueue/cds_wfcq_dequeue.c [new file with mode: 0644]

index b3bce57546c41ea2a904328283ceeff5e2e168cc..01f9e92fc9e91bae9985f9686021c0a08f4e638f 100644 (file)
@@ -83,6 +83,7 @@ doc/examples/list/cds_list_for_each_entry_rcu
 doc/examples/list/cds_list_replace_rcu
 
 doc/examples/wfcqueue/cds_wfcq_enqueue
+doc/examples/wfcqueue/cds_wfcq_dequeue
 
 #automake
 /config.h
index e117f9763bca2ee98b7a53c5b4fa8319bf6717a5..5425ed2fe0f42a4ce5eefd7bfac7011399d36f1a 100644 (file)
@@ -30,7 +30,9 @@ doc_examples_wfcqueuedir = ${doc_examplesdir}/wfcqueue
 
 dist_doc_examples_wfcqueue_DATA = \
        wfcqueue/Makefile.cds_wfcq_enqueue \
-       wfcqueue/cds_wfcq_enqueue.c
+       wfcqueue/Makefile.cds_wfcq_dequeue \
+       wfcqueue/cds_wfcq_enqueue.c \
+       wfcqueue/cds_wfcq_dequeue.c
 
 if NO_SHARED
 # Don't build examples if shared libraries support was explicitly
diff --git a/doc/examples/wfcqueue/Makefile b/doc/examples/wfcqueue/Makefile
new file mode 100644 (file)
index 0000000..8256128
--- /dev/null
@@ -0,0 +1,21 @@
+# 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.
+
+all:
+       $(MAKE) -f Makefile.cds_wfcq_enqueue
+       $(MAKE) -f Makefile.cds_wfcq_dequeue
+
+.PHONY: clean
+clean:
+       $(MAKE) -f Makefile.cds_wfcq_enqueue clean
+       $(MAKE) -f Makefile.cds_wfcq_dequeue clean
diff --git a/doc/examples/wfcqueue/Makefile.cds_wfcq_dequeue b/doc/examples/wfcqueue/Makefile.cds_wfcq_dequeue
new file mode 100644 (file)
index 0000000..4f80a71
--- /dev/null
@@ -0,0 +1,21 @@
+# 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_wfcq_dequeue
+
+SOURCES = $(EXAMPLE_NAME).c
+OBJECTS = $(EXAMPLE_NAME).o
+BINARY = $(EXAMPLE_NAME)
+LIBS = -lurcu-common
+
+include ../Makefile.examples.template
diff --git a/doc/examples/wfcqueue/cds_wfcq_dequeue.c b/doc/examples/wfcqueue/cds_wfcq_dequeue.c
new file mode 100644 (file)
index 0000000..6488d53
--- /dev/null
@@ -0,0 +1,80 @@
+/*
+ * 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 dequeue nodes from a wfcqueue.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <urcu/wfcqueue.h>     /* Wait-free concurrent queue */
+#include <urcu/compiler.h>     /* For CAA_ARRAY_SIZE */
+
+/*
+ * Nodes populated into the queue.
+ */
+struct mynode {
+       int value;                      /* Node content */
+       struct cds_wfcq_node node;      /* Chaining in queue */
+};
+
+int main(int argc, char **argv)
+{
+       int values[] = { -5, 42, 36, 24, };
+       struct cds_wfcq_head myqueue_head;      /* Queue head */
+       struct cds_wfcq_tail myqueue_tail;      /* Queue tail */
+       unsigned int i;
+       int ret = 0;
+
+       cds_wfcq_init(&myqueue_head, &myqueue_tail);
+
+       /*
+        * 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++) {
+               struct mynode *node;
+
+               node = malloc(sizeof(*node));
+               if (!node) {
+                       ret = -1;
+                       goto end;
+               }
+
+               cds_wfcq_node_init(&node->node);
+               node->value = values[i];
+               cds_wfcq_enqueue(&myqueue_head, &myqueue_tail,
+                               &node->node);
+       }
+
+       /*
+        * Dequeue each node from the queue. Those will be dequeued from
+        * the oldest (first enqueued) to the newest (last enqueued).
+        */
+       printf("dequeued content:");
+       for (;;) {
+               struct cds_wfcq_node *qnode;
+               struct mynode *node;
+
+               qnode = cds_wfcq_dequeue_blocking(&myqueue_head, &myqueue_tail);
+               if (!qnode) {
+                       break;  /* Queue is empty. */
+               }
+               /* Getting the container structure from the node */
+               node = caa_container_of(qnode, struct mynode, node);
+               printf(" %d", node->value);
+               free(node);
+       }
+       printf("\n");
+end:
+       return ret;
+}
This page took 0.027063 seconds and 4 git commands to generate.