diff options
author | Josh Blum | 2012-09-10 02:00:31 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-10 02:00:31 -0700 |
commit | 4adb2a384bb06406ffaf3ca4f5a33e42f8a74491 (patch) | |
tree | 2e3839e3acc7792f3bb691e864245fdf31dbcac7 /lib/element_impl.hpp | |
parent | 01a9ef2060e34b7cb6e8863e39854c5a0ae80b58 (diff) | |
download | sandhi-4adb2a384bb06406ffaf3ca4f5a33e42f8a74491.tar.gz sandhi-4adb2a384bb06406ffaf3ca4f5a33e42f8a74491.tar.bz2 sandhi-4adb2a384bb06406ffaf3ca4f5a33e42f8a74491.zip |
switch to using sbuffer in gras impl
Diffstat (limited to 'lib/element_impl.hpp')
-rw-r--r-- | lib/element_impl.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/element_impl.hpp b/lib/element_impl.hpp index 6a9c088..250e640 100644 --- a/lib/element_impl.hpp +++ b/lib/element_impl.hpp @@ -80,11 +80,11 @@ struct ElementImpl std::vector<Token> output_tokens; std::set<Token> token_pool; - std::vector<tsbe::BufferToken> output_buffer_tokens; + std::vector<SBufferToken> output_buffer_tokens; //buffer queues and ready conditions InputBufferQueues input_queues; - VectorOfQueues<tsbe::Buffer> output_queues; + VectorOfQueues<SBuffer> output_queues; std::vector<size_t> output_bytes_offset; //tag tracking @@ -115,7 +115,7 @@ struct ElementImpl void handle_task(const tsbe::TaskInterface &); void mark_done(const tsbe::TaskInterface &); void conclusion(const tsbe::TaskInterface &task_iface, const bool); - void buffer_returner(const size_t index, tsbe::Buffer &buffer); + void buffer_returner(const size_t index, SBuffer &buffer); //is the fg running? enum |