Re: [PATCH] Stop win32 popping up dialogs on segfault

2002-02-10 Thread Mattia Barbon
> Michael G Schwern <[EMAIL PROTECTED]> writes: > >On Fri, Feb 08, 2002 at 07:19:26PM +0100, Mattia Barbon wrote: > >Content-Description: Mail message body > >> The following patch adds a Parrot_nosegfault() function > >> to win32.c; after it is called, a segmentation fault will print > >> "This p

Re: [PATCH] Stop win32 popping up dialogs on segfault

2002-02-10 Thread Nick Ing-Simmons
Michael G Schwern <[EMAIL PROTECTED]> writes: >On Fri, Feb 08, 2002 at 07:19:26PM +0100, Mattia Barbon wrote: >Content-Description: Mail message body >> The following patch adds a Parrot_nosegfault() function >> to win32.c; after it is called, a segmentation fault will print >> "This process recei

RE: [PATCH] Stop win32 popping up dialogs on segfault

2002-02-08 Thread Melvin Smith
At 10:37 PM 2/8/2002 +0100, Mattia Barbon wrote: > > FYI: On interp init I already grab the standard handles (io_win32.c) so you > > could reuse the value for stderr. It might make sense to make the low level > > handle values extern so other modules can use them. Let me know and > > I'll put a pa

RE: [PATCH] Stop win32 popping up dialogs on segfault

2002-02-08 Thread Mattia Barbon
> FYI: On interp init I already grab the standard handles (io_win32.c) so you > could reuse the value for stderr. It might make sense to make the low level > handle values extern so other modules can use them. Let me know and > I'll put a patch in for it. I don't know if it is a good idea to expos

RE: [PATCH] Stop win32 popping up dialogs on segfault

2002-02-08 Thread Melvin Smith
At 10:15 PM 2/8/2002 +0100, Mattia Barbon wrote: > > > The following patch adds a Parrot_nosegfault() function > > > to win32.c; after it is called, a segmentation fault will print > > > "This process received a segmentation violation exception" > > > instead of popping up a dialog. I think it mig

Re: [PATCH] Stop win32 popping up dialogs on segfault

2002-02-08 Thread Michael G Schwern
On Fri, Feb 08, 2002 at 07:19:26PM +0100, Mattia Barbon wrote: Content-Description: Mail message body > The following patch adds a Parrot_nosegfault() function > to win32.c; after it is called, a segmentation fault will print > "This process received a segmentation violation exception" > instead o

RE: [PATCH] Stop win32 popping up dialogs on segfault

2002-02-08 Thread Mattia Barbon
> > The following patch adds a Parrot_nosegfault() function > > to win32.c; after it is called, a segmentation fault will print > > "This process received a segmentation violation exception" > > instead of popping up a dialog. I think it might be useful > > for tinderbox clients. > > Please notic

RE: [PATCH] Stop win32 popping up dialogs on segfault

2002-02-08 Thread Hong Zhang
> The following patch adds a Parrot_nosegfault() function > to win32.c; after it is called, a segmentation fault will print > "This process received a segmentation violation exception" > instead of popping up a dialog. I think it might be useful > for tinderbox clients. Please notice, stdio is no

[PATCH] Stop win32 popping up dialogs on segfault

2002-02-08 Thread Mattia Barbon
The following patch adds a Parrot_nosegfault() function to win32.c; after it is called, a segmentation fault will print "This process received a segmentation violation exception" instead of popping up a dialog. I think it might be useful for tinderbox clients. Regards Mattia Index: platforms/w