This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Exception handling
- From: "Serguei I. Ivantsov" <admin at gsc-game dot kiev dot ua>
- To: <gcc at gcc dot gnu dot org>
- Date: Mon, 26 Aug 2002 18:36:59 +0300
- Subject: Re: Exception handling
>GCC does not catch hardware exceptions like divide by 0 and other traps.
>Look at signal(3) for information on how to trap these on UNIX's.
What can I do if I want to execute some function from dll (server plugin)
safely?
I want process to continue execution after any exception you can imagine.
I don't want to install "thousands" signal handlers, I only want process not
abort after error.
Is it possible, like in M$ ?