diff options
Diffstat (limited to 'gnuradio-runtime/examples/mp-sched/affinity_set.py')
-rw-r--r-- | gnuradio-runtime/examples/mp-sched/affinity_set.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/examples/mp-sched/affinity_set.py b/gnuradio-runtime/examples/mp-sched/affinity_set.py index b717e1e506..a253c8081c 100644 --- a/gnuradio-runtime/examples/mp-sched/affinity_set.py +++ b/gnuradio-runtime/examples/mp-sched/affinity_set.py @@ -59,7 +59,7 @@ if __name__ == '__main__': tb.start() while(1): - ret = eval(input('Enter a new Core # or Press Enter to quit: ')) + ret = input('Enter a new Core # or Press Enter to quit: ') if(len(ret) == 0): tb.stop() sys.exit(0) |