Re: exit(-1) vs abort in dri drivers..

2005-01-19 Thread Felix Kühling
Am Mittwoch, den 19.01.2005, 11:28 -0500 schrieb Adam Jackson: > On Wednesday 19 January 2005 03:56, Keith Whitwell wrote: > > Dave Airlie wrote: > > > Hi all, > > > On error a lot of DRI drivers do an exit and just leave, this > > > means you have to setup a break on exit to debug these cases whi

Re: exit(-1) vs abort in dri drivers..

2005-01-19 Thread Adam Jackson
On Wednesday 19 January 2005 10:27, Vladimir Dergachev wrote: > On Wed, 19 Jan 2005, Dave Airlie wrote: > > Hi all, > > On error a lot of DRI drivers do an exit and just leave, this > > means you have to setup a break on exit to debug these cases which can be > > a bit of a pain if you forget.. I

Re: exit(-1) vs abort in dri drivers..

2005-01-19 Thread Adam Jackson
On Wednesday 19 January 2005 03:56, Keith Whitwell wrote: > Dave Airlie wrote: > > Hi all, > > On error a lot of DRI drivers do an exit and just leave, this > > means you have to setup a break on exit to debug these cases which can be > > a bit of a pain if you forget.. I wonder how to people feel

Re: exit(-1) vs abort in dri drivers..

2005-01-19 Thread Vladimir Dergachev
On Wed, 19 Jan 2005, Vladimir Dergachev wrote: On Wed, 19 Jan 2005, Dave Airlie wrote: Hi all, On error a lot of DRI drivers do an exit and just leave, this means you have to setup a break on exit to debug these cases which can be a bit of a pain if you forget.. I wonder how to people fee

Re: exit(-1) vs abort in dri drivers..

2005-01-19 Thread Vladimir Dergachev
On Wed, 19 Jan 2005, Dave Airlie wrote: Hi all, On error a lot of DRI drivers do an exit and just leave, this means you have to setup a break on exit to debug these cases which can be a bit of a pain if you forget.. I wonder how to people feel about changing these exits to aborts so the ap

Re: exit(-1) vs abort in dri drivers..

2005-01-19 Thread Keith Whitwell
Dave Airlie wrote: Hi all, On error a lot of DRI drivers do an exit and just leave, this means you have to setup a break on exit to debug these cases which can be a bit of a pain if you forget.. I wonder how to people feel about changing these exits to aborts so the app gets a signal and th

exit(-1) vs abort in dri drivers..

2005-01-18 Thread Dave Airlie
Hi all, On error a lot of DRI drivers do an exit and just leave, this means you have to setup a break on exit to debug these cases which can be a bit of a pain if you forget.. I wonder how to people feel about changing these exits to aborts so the app gets a signal and then can be backtrac