This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: exception handling poll
On Fri, Oct 17, 1997 at 10:28:40AM -0300, Horst von Brand wrote:
> BTW, as has been said several times before: You _can't_ ever trow through C
> code, unless that C code is _very_ *very* carefully written...
Not exactly. What you mean is that you can't throw through arbitrary
C code and expect to be able to continue on as if nothing happened, and
eventually call back down into the same library.
But without frame unwind info in C code -- libraries in particular --
you can't even gracefully shut down an application.
r~