diff options
author | Josh Blum | 2012-09-13 19:03:59 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-13 19:03:59 -0700 |
commit | 1ec3451161fbbd772490b8b1c7dd3d3c7aad9503 (patch) | |
tree | 385dbecf7c228f9420e2dbb374772720546182f2 /lib/element_impl.hpp | |
parent | 87cd4fe7179a55f1ea34ea90744017c403838542 (diff) | |
download | sandhi-1ec3451161fbbd772490b8b1c7dd3d3c7aad9503.tar.gz sandhi-1ec3451161fbbd772490b8b1c7dd3d3c7aad9503.tar.bz2 sandhi-1ec3451161fbbd772490b8b1c7dd3d3c7aad9503.zip |
input buffer history work and fixes
added consume flag to know if user called consume
fixes for mini history buff and flag when in use
Diffstat (limited to 'lib/element_impl.hpp')
-rw-r--r-- | lib/element_impl.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/element_impl.hpp b/lib/element_impl.hpp index 01a9791..11aa305 100644 --- a/lib/element_impl.hpp +++ b/lib/element_impl.hpp @@ -88,6 +88,7 @@ struct ElementImpl //track work's calls to produce and consume std::vector<size_t> produce_items; std::vector<size_t> consume_items; + std::vector<bool> consume_called; //track the subscriber counts std::vector<Token> input_tokens; |