[Openlte-discuss] LTE_fdd_enb_interface "handle_start" and "handle_stop"
An open source 3GPP LTE implementation.
Status: Alpha
Brought to you by:
bwojtowi
|
From: Mikhail G. <gm...@gm...> - 2015-08-11 07:11:10
|
LTE_fdd_enb_timer_mgr entity have start() and no one call stop() function
for it.
I think stop function need to be added near the LTE_fdd_enb_interface:1027
phy->stop();
mac->stop();
rlc->stop();
pdcp->stop();
rrc->stop();
mme->stop();
timer_mgr->stop(); // <- here
Second stop near the LTE_fdd_enb_interface:1065
phy->stop();
mac->stop();
rlc->stop();
pdcp->stop();
rrc->stop();
mme->stop();
gw->stop();
timer_mgr->stop(); // <- here
And cleanup() function near the LTE_fdd_enb_interface:1141
// Cleanup all layers
LTE_fdd_enb_radio::cleanup();
LTE_fdd_enb_phy::cleanup();
LTE_fdd_enb_mac::cleanup();
LTE_fdd_enb_rlc::cleanup();
LTE_fdd_enb_pdcp::cleanup();
LTE_fdd_enb_rrc::cleanup();
LTE_fdd_enb_mme::cleanup();
LTE_fdd_enb_gw::cleanup();
LTE_fdd_enb_timer_mgr::cleanup(); // <- here
|