diff options
author | Bill Clark <saikou@vt.edu> | 2015-04-01 16:29:52 -0400 |
---|---|---|
committer | Bill Clark <saikou@vt.edu> | 2015-04-01 16:29:52 -0400 |
commit | f1657258ccaa1b62d9ef8bd4d8e9b3cebf865b9c (patch) | |
tree | 076be1695a9d4bdf48190a8ab26700994db305fa /gnuradio-runtime/lib/hier_block2_detail.h | |
parent | cc824f49c4d597eadcbb1c850b529dc2b0722ec9 (diff) |
gnuradio-runtime: modified buffer length types to size_t, moved buffer length vectors into detail
Diffstat (limited to 'gnuradio-runtime/lib/hier_block2_detail.h')
-rw-r--r-- | gnuradio-runtime/lib/hier_block2_detail.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/hier_block2_detail.h b/gnuradio-runtime/lib/hier_block2_detail.h index df2d088ccf..8c38c3754a 100644 --- a/gnuradio-runtime/lib/hier_block2_detail.h +++ b/gnuradio-runtime/lib/hier_block2_detail.h @@ -25,7 +25,6 @@ #include <gnuradio/api.h> #include <gnuradio/hier_block2.h> -#include <gnuradio/block.h> #include <flat_flowgraph.h> #include <boost/utility.hpp> @@ -58,6 +57,10 @@ namespace gr { void set_processor_affinity(const std::vector<int> &mask); void unset_processor_affinity(); std::vector<int> processor_affinity(); + + // Track output buffer min/max settings + std::vector<size_t> d_max_output_buffer; + std::vector<size_t> d_min_output_buffer; private: // Private implementation data |