RE: [PATCH v3 1/2] eal: add thread yield functions

2023-10-25 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Wednesday, 25 October 2023 18.31 > > When running real-time threads, we may need to force scheduling > kernel threads or other real-time threads. > New functions are added to address these cases. > > The yield functions should not have

Re: [PATCH v3 1/2] eal: add thread yield functions

2023-10-25 Thread Thomas Monjalon
25/10/2023 18:40, Bruce Richardson: > On Wed, Oct 25, 2023 at 06:31:10PM +0200, Thomas Monjalon wrote: > > When running real-time threads, we may need to force scheduling > > kernel threads or other real-time threads. > > New functions are added to address these cases. > > > > The yield functions

Re: [PATCH v3 1/2] eal: add thread yield functions

2023-10-25 Thread Bruce Richardson
On Wed, Oct 25, 2023 at 06:31:10PM +0200, Thomas Monjalon wrote: > When running real-time threads, we may need to force scheduling > kernel threads or other real-time threads. > New functions are added to address these cases. > > The yield functions should not have any interest for normal threads.

[PATCH v3 1/2] eal: add thread yield functions

2023-10-25 Thread Thomas Monjalon
When running real-time threads, we may need to force scheduling kernel threads or other real-time threads. New functions are added to address these cases. The yield functions should not have any interest for normal threads. Note: other purposes may be addressed with rte_pause() or rte_delay_*().