diff options
author | Tom Rondeau | 2013-03-29 13:12:36 -0400 |
---|---|---|
committer | Johnathan Corgan | 2013-03-29 10:55:06 -0700 |
commit | 78cd4026c0a9b902162e94905b60a9dd44a07bb7 (patch) | |
tree | e723d38d7b19b13d3c713868d755f2c48e84c726 /gnuradio-core/src/lib/runtime/gr_block.cc | |
parent | 91714eaa1fd33f4f801a9a8dedbd6832c01b1204 (diff) | |
download | gnuradio-78cd4026c0a9b902162e94905b60a9dd44a07bb7.tar.gz gnuradio-78cd4026c0a9b902162e94905b60a9dd44a07bb7.tar.bz2 gnuradio-78cd4026c0a9b902162e94905b60a9dd44a07bb7.zip |
core: addressing issue #529. Using vector<int> instead of vector<unsigned int> for affinity mask vector.
This is wrong as the mask should be unsigned, but necessary for SWIG to work cleanly on both 32-bit and 64-bit platforms.
Diffstat (limited to 'gnuradio-core/src/lib/runtime/gr_block.cc')
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_block.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_block.cc b/gnuradio-core/src/lib/runtime/gr_block.cc index 54d267620..587e9d195 100644 --- a/gnuradio-core/src/lib/runtime/gr_block.cc +++ b/gnuradio-core/src/lib/runtime/gr_block.cc @@ -253,7 +253,7 @@ gr_block::is_set_max_noutput_items() } void -gr_block::set_processor_affinity(const std::vector<unsigned int> &mask) +gr_block::set_processor_affinity(const std::vector<int> &mask) { d_affinity = mask; if(d_detail) { |