aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/device/ringbuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/device/ringbuffer.h')
-rw-r--r--src/drivers/device/ringbuffer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/drivers/device/ringbuffer.h b/src/drivers/device/ringbuffer.h
index a9e22eaa6..b26e2e7c8 100644
--- a/src/drivers/device/ringbuffer.h
+++ b/src/drivers/device/ringbuffer.h
@@ -162,6 +162,10 @@ private:
volatile unsigned _tail; /**< removal point in _item_size units */
unsigned _next(unsigned index);
+
+ /* we don't want this class to be copied */
+ RingBuffer(const RingBuffer&);
+ RingBuffer operator=(const RingBuffer&);
};
RingBuffer::RingBuffer(unsigned num_items, size_t item_size) :