From a06f28b77cff0a6b5a6ef7ff85cae70590e4cc75 Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Wed, 26 Sep 2012 00:12:45 -0400 Subject: [PATCH] ck_ring: Remove useless comment. --- include/ck_ring.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/ck_ring.h b/include/ck_ring.h index 077d94a..71aa66b 100644 --- a/include/ck_ring.h +++ b/include/ck_ring.h @@ -207,11 +207,6 @@ ck_ring_dequeue_spsc(struct ck_ring *ring, void *data) * being a reality on POSIX). This interface is * troublesome on platforms where sizeof(void *) * is not guaranteed to be sizeof(T *). - * - * It is guaranteed that the value of - * ring->ring[consumer] is either in *data or aliased - * to some location whose value is to be stored in data - * before this operation completes. */ ck_pr_store_ptr(data, ring->ring[consumer]); ck_pr_fence_store();