diff options
author | Josh Blum | 2013-02-22 00:39:31 -0800 |
---|---|---|
committer | Josh Blum | 2013-02-22 00:39:31 -0800 |
commit | 875d8fc1a2a1d6fc8bea8e42813a5fd9cd470fc5 (patch) | |
tree | 9274e163123791d95fa4ef93935599af0510c905 /lib/block.cpp | |
parent | 1ebb3a5b0c07db01af2d99c80032d88f3b5c28a3 (diff) | |
download | sandhi-875d8fc1a2a1d6fc8bea8e42813a5fd9cd470fc5.tar.gz sandhi-875d8fc1a2a1d6fc8bea8e42813a5fd9cd470fc5.tar.bz2 sandhi-875d8fc1a2a1d6fc8bea8e42813a5fd9cd470fc5.zip |
gras: rename start/stop to notify interfaces
also moved backwards compat interfaces out
the gnuradio commit is updated for this
Diffstat (limited to 'lib/block.cpp')
-rw-r--r-- | lib/block.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/block.cpp b/lib/block.cpp index 716873b..128a9b8 100644 --- a/lib/block.cpp +++ b/lib/block.cpp @@ -189,14 +189,14 @@ void Block::propagate_tags(const size_t i, const TagIter &iter) } } -bool Block::start(void) +void Block::notify_active(void) { - return true; + //NOP } -bool Block::stop(void) +void Block::notify_inactive(void) { - return true; + //NOP } void Block::notify_topology(const size_t, const size_t) |