Re: [PATCH weston v2] Added handler for SIGABRT

2013-03-27 Thread Kristian Høgsberg
On Wed, Mar 27, 2013 at 10:38:53PM +0100, Peter Maatman wrote: > --- > src/compositor.c | 29 ++--- > 1 file changed, 18 insertions(+), 11 deletions(-) I added the void in catch_signal() as Giulio mentioned, other than that it all looks good. Thanks, and thanks Giulio for

Re: [PATCH weston v2] Added handler for SIGABRT

2013-03-27 Thread Giulio Camuffo
Awesome, thanks, this was badly needed. Looks good to me. 2013/3/27 Peter Maatman : > --- > src/compositor.c | 29 ++--- > 1 file changed, 18 insertions(+), 11 deletions(-) > > diff --git a/src/compositor.c b/src/compositor.c > index a2860fd..e750cbe 100644 > --- a/src/com

[PATCH weston v2] Added handler for SIGABRT

2013-03-27 Thread Peter Maatman
--- src/compositor.c | 29 ++--- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/src/compositor.c b/src/compositor.c index a2860fd..e750cbe 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -3221,17 +3221,17 @@ print_backtrace(void) #endif static v

Re: [PATCH weston v2] Added handler for SIGABRT

2013-03-27 Thread Giulio Camuffo
Sorry to keep annoying you, but the commit's author name is still blackwolf12333. There are also some of trailing whitespaces, i've put inline comments for them. 2013/3/27 Peter Maatman : > From: blackwolf12333 > > This handler will do exactly the same as the SIGSEGV handler > but now for the SIG

[PATCH weston v2] Added handler for SIGABRT

2013-03-27 Thread Peter Maatman
From: blackwolf12333 This handler will do exactly the same as the SIGSEGV handler but now for the SIGABRT signal. --- src/compositor.c | 35 +-- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/src/compositor.c b/src/compositor.c index a2860fd..5d4c