Re: [Openlte-discuss] LTE_fdd_enb_msgq::receive_thread priority
An open source 3GPP LTE implementation.
Status: Alpha
Brought to you by:
bwojtowi
|
From: Ben W. <bwo...@gm...> - 2015-08-09 22:35:59
|
Mikhail,
Thanks for reporting this. I'll add the fix to the next release.
Thanks,
Ben
On Thu, Jul 9, 2015 at 12:19 AM, Mikhail Gudkov <gm...@gm...> wrote:
> I think set priority fragment have a typo
>
> // Set priority
> if(msgq->prio != 0)
> {
> // FIXME: verify
> priority.sched_priority = prio; // <<-- this one
> pthread_setschedparam(msgq->rx_thread, SCHED_FIFO, &priority);
> }
>
> Corrected variant
>
> // Set priority
> if(msgq->prio != 0)
> {
> // FIXME: verify
> priority.sched_priority = msgq->prio;
> pthread_setschedparam(msgq->rx_thread, SCHED_FIFO, &priority);
> }
>
>
> ------------------------------------------------------------------------------
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> _______________________________________________
> Openlte-discuss mailing list
> Ope...@li...
> https://lists.sourceforge.net/lists/listinfo/openlte-discuss
>
>
|