Re: [PATCH 2/5] score: Fix blocking message queue receive

2021-09-01 Thread Sebastian Huber
On 01/09/2021 18:58, Gedare Bloom wrote: On Tue, Aug 31, 2021 at 5:24 AM Sebastian Huber wrote: In order to ensure FIFO fairness across schedulers, the thread queue surrender operation must be used to dequeue a thread from the thread queue. The thread queue extract operation is intended for t

Re: [PATCH 2/5] score: Fix blocking message queue receive

2021-09-01 Thread Gedare Bloom
On Tue, Aug 31, 2021 at 5:24 AM Sebastian Huber wrote: > > In order to ensure FIFO fairness across schedulers, the thread queue > surrender operation must be used to dequeue a thread from the thread > queue. The thread queue extract operation is intended for timeouts. > Please add a note like th

[PATCH 2/5] score: Fix blocking message queue receive

2021-08-31 Thread Sebastian Huber
In order to ensure FIFO fairness across schedulers, the thread queue surrender operation must be used to dequeue a thread from the thread queue. The thread queue extract operation is intended for timeouts. Add _Thread_queue_Resume() which may be used to make extracted or surrendered threads ready