summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2017-02-20 17:45:16 +0200
committerimarom <imarom@cisco.com>2017-02-20 17:45:16 +0200
commit68cf31b303e7207c358aced1e27937b793e87f4d (patch)
tree29e6de8d2a3f607faa6d49493da29e826da0b00a
parent4c83b9d445e68b3b1dba126648169a6cd05ac9b2 (diff)
few cleanups
Signed-off-by: imarom <imarom@cisco.com>
-rw-r--r--src/stateless/rx/trex_stateless_rx_core.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/stateless/rx/trex_stateless_rx_core.h b/src/stateless/rx/trex_stateless_rx_core.h
index 8166ef52..6b5e0a64 100644
--- a/src/stateless/rx/trex_stateless_rx_core.h
+++ b/src/stateless/rx/trex_stateless_rx_core.h
@@ -107,7 +107,6 @@ class CRxCoreStateless {
/**
* core states
*
- * STATE_IDLE - only checking for messages periodically
* STATE_COLD - will sleep until a packet arrives
* then it will move to a faster pace
* until no packet arrives for some time
@@ -115,7 +114,6 @@ class CRxCoreStateless {
* STATE_HOT - 100% checking for packets (latency check)
*/
enum state_e {
- STATE_IDLE,
STATE_COLD,
STATE_HOT,
STATE_QUIT
@@ -170,7 +168,6 @@ class CRxCoreStateless {
void tickle();
/* states */
- //void idle_state_loop();
void hot_state_loop();
void cold_state_loop();
void init_work_stage();