summaryrefslogtreecommitdiffstats
path: root/src/bp_sim.cpp
diff options
context:
space:
mode:
authorHanoh Haim <hhaim@cisco.com>2015-11-22 13:02:08 +0200
committerHanoh Haim <hhaim@cisco.com>2015-11-22 13:02:08 +0200
commit3408c03067a85789b2128352fdc2343ab707ae32 (patch)
tree1d9d1f116ce698240c4e77d2a4ea898b4c568953 /src/bp_sim.cpp
parent36dc8ea51adffce882e542123111baad7a1a7ea7 (diff)
fix stop on duration per port
Diffstat (limited to 'src/bp_sim.cpp')
-rwxr-xr-xsrc/bp_sim.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bp_sim.cpp b/src/bp_sim.cpp
index f8dd20a1..a61fbb8f 100755
--- a/src/bp_sim.cpp
+++ b/src/bp_sim.cpp
@@ -3186,6 +3186,7 @@ bool CFlowGenListPerThread::Create(uint32_t thread_id,
uint32_t max_threads){
+ m_non_active_nodes = 0;
m_terminated_by_master=false;
m_flow_list =flow_list;
m_core_id= core_id;
@@ -3655,8 +3656,8 @@ CNodeGenerator::handle_slow_messages(uint8_t type,
thread->check_msgs(); /* check messages */
m_v_if->flush_tx_queue(); /* flush pkt each timeout */
- /* on always (clean queue path) and queue empty - exit */
- if ( always && (m_p_queue.empty()) ) {
+ /* exit in case this is the last node*/
+ if ( m_p_queue.size() == m_parent->m_non_active_nodes ) {
thread->free_node(node);
exit_scheduler = true;
} else {