[PATCH] weston-launch: Fixed TTY switching

2015-03-31 Thread mateuszx . potrola
From: Mateusz Polrola After weston-launch is executing weston it cannot close TTY file, because it is still required to properly handle SIGUSR1 and SIGUSR2 signals that are used for switching TTY. Additionally after opening TTY it has to be activated, so that user don't have to manually switch t

Re: [PATCH wayland] shm: Allow deferred deletion of shared memory pools

2015-03-31 Thread Bill Spitzak
On 03/31/2015 11:26 AM, Derek Foreman wrote: Some compositors perform rendering in a separate thread. If a client destroy occurs during rendering a segfault will occur when the client's shared memory pools are unmapped and the renderer continues to use them. Is this thing correctly handling th

Re: use compatible check for dot version

2015-03-31 Thread Hector Oron
Hello, 2015-03-31 20:49 GMT+02:00 Bill Spitzak : > I can't get either of those to work, but how about this: > > dot_version=`$DOT -V 2>&1 | $GREP -o '[0-9]*\.[0-9]*\.[0-9]*'` That one also works for me. Thanks -- Héctor Orón -.. . -... .. .- -. -.. . ...- . .-.. --- .--. . .-.

Re: use compatible check for dot version

2015-03-31 Thread Bill Spitzak
I can't get either of those to work, but how about this: dot_version=`$DOT -V 2>&1 | $GREP -o '[0-9]*\.[0-9]*\.[0-9]*'` That seems to produce "2.26.3" on my machine. On 03/31/2015 09:17 AM, hector.o...@gmail.com wrote: From: Hector Oron Hello, configure uses grep -oP to check for dot ve

[PATCH wayland] shm: Allow deferred deletion of shared memory pools

2015-03-31 Thread Derek Foreman
Some compositors perform rendering in a separate thread. If a client destroy occurs during rendering a segfault will occur when the client's shared memory pools are unmapped and the renderer continues to use them. This adds a way (disabled by default) to queue shared memory pool deletion instead

[PATCH] configure.ac: use compatible check for dot version

2015-03-31 Thread hector . oron
From: Hector Oron configure uses grep -P, which is not supported in old grep versions. The proposed patch uses equivalent sed form instead. Signed-off-by: Héctor Orón Martínez --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac

use compatible check for dot version

2015-03-31 Thread hector . oron
From: Hector Oron Hello, configure uses grep -oP to check for dot version in the following form: dot_version=`$DOT -V 2>&1|$GREP -oP '(?<=version\W)@<:@0-9.@:>@*(?=\W(.*))'` that is not supported in old grep versions. The proposed patch uses equivalent sed form instead. dot_version

Re: [PATCH weston 0/4] Some transform fixes

2015-03-31 Thread Derek Foreman
On 27/03/15 02:23 AM, Pekka Paalanen wrote: > On Tue, 24 Mar 2015 22:09:05 -0700 > Bryce Harrington wrote: > >> On Tue, Mar 24, 2015 at 11:36:12AM -0500, Derek Foreman wrote: >>> Zoom broke in 87535e24 "zoom: use pixels instead of gl co-ordinates" >>> was fixed for some transforms in 0f67941c "co

Re: [PATCH weston 2/9] tests: rename client_create to create_client_and_test_surface

2015-03-31 Thread Marek Chalupa
Hi, yep, I can confirm R-b for the two patches. Thanks, Marek On Tue, Mar 31, 2015 at 11:26 AM, Pekka Paalanen wrote: > On Mon, 30 Mar 2015 06:52:37 -0400 > Marek Chalupa wrote: > > > Hehe, race in sending patches (I will have to rebase my patches I just > sent > > if this series will get me

Re: [PATCH weston 2/9] tests: rename client_create to create_client_and_test_surface

2015-03-31 Thread Pekka Paalanen
On Mon, 30 Mar 2015 06:52:37 -0400 Marek Chalupa wrote: > Hehe, race in sending patches (I will have to rebase my patches I just sent > if this series will get merged before main :) > Anyway, for this and the previous patch: > > Reviewed-by: Marek Chalupa Hi, thanks. Now that your series has

Re: [PATCH weston v3] tests: add tests for devices handling

2015-03-31 Thread Pekka Paalanen
On Mon, 30 Mar 2015 09:21:29 -0400 Marek Chalupa wrote: > Test misc races when adding/releasing devices > > v2.: use one roundtrip after releasing devices > add touch support > > v3.: remove useless checks > add few comments > repeat tests 30 times instead of 100 times > (it

Re: [PATCH weston v2 5/5] tests: add tests for devices handling

2015-03-31 Thread Pekka Paalanen
On Mon, 30 Mar 2015 09:13:16 -0400 Marek Chalupa wrote: > On Mon, Mar 30, 2015 at 8:22 AM, Pekka Paalanen wrote: > > > On Mon, 30 Mar 2015 06:37:59 -0400 > > Marek Chalupa wrote: > > > > > Test misc races when adding/releasing devices > > > > > > v2.: use one roundtrip after releasing devices