cosmetic changes

master
Andre Puschmann 7 years ago
parent 85028d2aed
commit b4a23d325a

@ -301,7 +301,7 @@ int mac::crc_info(uint32_t tti, uint16_t rnti, uint32_t nof_bytes, bool crc)
// push the pdu through the queue if received correctly
if (crc) {
ue_db[rnti]->push_pdu(tti, nof_bytes);
ue_db[rnti]->push_pdu(tti, nof_bytes);
pdu_process_thread.notify();
if (nof_bytes > 64) { // do not count RLC status messages only
rrc_h->set_activity_user(rnti);
@ -732,7 +732,7 @@ void mac::timer_thread::tti_clock()
/********************************************************
*
* Class that runs a thread to process DL MAC PDUs from
* DEMU unit
* DEMUX unit
*
*******************************************************/
mac::pdu_process::pdu_process(pdu_process_handler *h) : running(false) {

@ -87,7 +87,7 @@ void s1ap::get_metrics(s1ap_metrics_t &m)
void s1ap::run_thread()
{
srslte::byte_buffer_t *pdu = pool_allocate;
srslte::byte_buffer_t *pdu = pool->allocate("s1ap::run_thread");
if (!pdu) {
s1ap_log->error("Fatal Error: Couldn't allocate buffer in s1ap::run_thread().\n");
return;

@ -115,7 +115,7 @@ mme::stop()
void
mme::run_thread()
{
srslte::byte_buffer_t *pdu = m_pool->allocate();
srslte::byte_buffer_t *pdu = m_pool->allocate("mme::run_thread");
uint32_t sz = SRSLTE_MAX_BUFFER_SIZE_BYTES - SRSLTE_BUFFER_HEADER_OFFSET;
struct sockaddr_in enb_addr;

Loading…
Cancel
Save