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 not

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 notice, stdio is

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 might be useful

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 expose

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 patch in