diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-06-05 18:46:01 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-05 18:46:01 +0000 |
commit | 8c2c728ce5aa1c1941426d0f8e9ab27762ef6754 (patch) | |
tree | 29568db8f979596341b0cdf8f0c25d9a78a48b7d /src/tests | |
parent | b7e40536df9bf9bbad3b2b7a59f33ebad25fc981 (diff) | |
download | libbu++-8c2c728ce5aa1c1941426d0f8e9ab27762ef6754.tar.gz libbu++-8c2c728ce5aa1c1941426d0f8e9ab27762ef6754.tar.bz2 libbu++-8c2c728ce5aa1c1941426d0f8e9ab27762ef6754.tar.xz libbu++-8c2c728ce5aa1c1941426d0f8e9ab27762ef6754.zip |
Added a basic ringbuffer, it should be nice and quick, but may be bad to use
with objects at the moment, still contemplating that one...
Diffstat (limited to '')
-rw-r--r-- | src/tests/ringbuffer.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/tests/ringbuffer.cpp b/src/tests/ringbuffer.cpp new file mode 100644 index 0000000..259ec1f --- /dev/null +++ b/src/tests/ringbuffer.cpp | |||
@@ -0,0 +1,29 @@ | |||
1 | #include "bu/ringbuffer.h" | ||
2 | #include <stdlib.h> | ||
3 | |||
4 | int main() | ||
5 | { | ||
6 | Bu::RingBuffer<uint32_t> ibuf( 10 ); | ||
7 | |||
8 | for( int k = 0; k < 2; k++ ) | ||
9 | { | ||
10 | int j = 1; | ||
11 | for(; j < 7; j++ ) | ||
12 | { | ||
13 | ibuf.enqueue( j ); | ||
14 | } | ||
15 | |||
16 | for(; j < 20; j++ ) | ||
17 | { | ||
18 | ibuf.enqueue( j ); | ||
19 | printf("- %d\n", ibuf.dequeue() ); | ||
20 | } | ||
21 | |||
22 | for(;;) | ||
23 | { | ||
24 | if( ibuf.isEmpty() ) break; | ||
25 | printf(". %d\n", ibuf.dequeue() ); | ||
26 | } | ||
27 | } | ||
28 | } | ||
29 | |||