blob: de56e57a6bdde9ac5be62d731fc52123d32d54a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <trex_stateless_dp_core.h>
class CFlowGenListPerThread;
class TrexStatelessCpToDpMsgBase;
TrexStatelessDpCore::TrexStatelessDpCore(unsigned char, CFlowGenListPerThread*) {
m_thread_id = 0;
m_core = NULL;
m_state = STATE_IDLE;
CMessagingManager * cp_dp = CMsgIns::Ins()->getCpDp();
m_ring_from_cp = cp_dp->getRingCpToDp(0);
m_ring_to_cp = cp_dp->getRingDpToCp(0);
}
void TrexStatelessDpCore::start(){}
void TrexStatelessDpCore::handle_cp_msg(TrexStatelessCpToDpMsgBase*) {}
|