summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib/runtime
diff options
context:
space:
mode:
authorEric Blossom2010-11-08 14:03:19 -0800
committerEric Blossom2010-11-10 12:17:58 -0800
commit941c9a792f103c48de6157026d08d7b0a6bae227 (patch)
treedd8836e82f5b4b944dcf215d57898d179e3076e6 /gnuradio-core/src/lib/runtime
parent95a575c177be15b7d4a8634a071ee11f3fb403f4 (diff)
downloadgnuradio-941c9a792f103c48de6157026d08d7b0a6bae227.tar.gz
gnuradio-941c9a792f103c48de6157026d08d7b0a6bae227.tar.bz2
gnuradio-941c9a792f103c48de6157026d08d7b0a6bae227.zip
Enable test case & fix (missing throw (std::runtime_error) declaration).
Diffstat (limited to 'gnuradio-core/src/lib/runtime')
-rw-r--r--gnuradio-core/src/lib/runtime/gr_top_block.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_top_block.i b/gnuradio-core/src/lib/runtime/gr_top_block.i
index d9adf1e18..f18d8890b 100644
--- a/gnuradio-core/src/lib/runtime/gr_top_block.i
+++ b/gnuradio-core/src/lib/runtime/gr_top_block.i
@@ -43,7 +43,7 @@ public:
void start() throw (std::runtime_error);
void stop();
void wait();
- void run();
+ void run() throw (std::runtime_error);
void lock();
void unlock() throw (std::runtime_error);
void dump();