diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-26 13:30:40 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-26 13:30:40 -0400 |
commit | 2ac932c60b4764511310deca5a236749ec0db76b (patch) | |
tree | 7566a3cf98ae0318303f821459a55840f432c1bf /gnuradio-core/src/examples | |
parent | 71803b9ae55e688476f24637713a89ab6bd2cf17 (diff) |
core: fixed block names conflict from next.
Diffstat (limited to 'gnuradio-core/src/examples')
-rwxr-xr-x | gnuradio-core/src/examples/mp-sched/affinity_set.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-core/src/examples/mp-sched/affinity_set.py b/gnuradio-core/src/examples/mp-sched/affinity_set.py index d73d4fc428..65e929051b 100755 --- a/gnuradio-core/src/examples/mp-sched/affinity_set.py +++ b/gnuradio-core/src/examples/mp-sched/affinity_set.py @@ -60,11 +60,11 @@ if __name__ == '__main__': tb.stop() sys.exit(0) elif(ret.lower() == "none"): - tb.filter_filt_0.unset_processor_affinity() + tb.gr_filt_0.unset_processor_affinity() else: try: n = int(ret) except ValueError: print "Invalid number" else: - tb.filter_filt_0.set_processor_affinity([n,]) + tb.gr_filt_0.set_processor_affinity([n,]) |