Re: [RFC weston 1/2] libweston: Add event loop abstraction API

2018-02-21 Thread Pekka Paalanen
On Wed, 21 Feb 2018 11:54:43 +0200 Pekka Paalanen wrote: > On Mon, 19 Feb 2018 20:19:04 +0100 > Quentin Glidic wrote: > > > From: Quentin Glidic > > > > This will allow compositors to pick any event loop implementation they > > want, and integrating the libweston components with it. > > Speci

Re: [RFC weston 1/2] libweston: Add event loop abstraction API

2018-02-21 Thread Pekka Paalanen
On Mon, 19 Feb 2018 20:19:04 +0100 Quentin Glidic wrote: > From: Quentin Glidic > > This will allow compositors to pick any event loop implementation they > want, and integrating the libweston components with it. > Specifically, idle and timeout sources can now have proper priorities to > avoid

[RFC weston 1/2] libweston: Add event loop abstraction API

2018-02-19 Thread Quentin Glidic
From: Quentin Glidic This will allow compositors to pick any event loop implementation they want, and integrating the libweston components with it. Specifically, idle and timeout sources can now have proper priorities to avoid being ghosted by client event processing. Signed-off-by: Quentin Glid