This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Exception handling with shared libraries
- From: bjorn rohde jensen <bjensen at fastmail dot fm>
- To: pmosna at gcas dot net
- Cc: gcc-help at gcc dot gnu dot org
- Date: Wed, 07 Aug 2002 22:36:51 +0200
- Subject: Re: Exception handling with shared libraries
- References: <3D515334.7030808@gcas.net>
- Reply-to: bjensen at fastmail dot fm
Hi Paolo,
I have had similar experiences playing with dynamic
loading and unloading of shared objects, where i was
too quick to unload the shared objects in the exception
handling parts. I had unloaded the shared objects before
the exception class' destructor had run causing a
predictable problem;) This sort of thing will show up
in a stack trace under gdb as a call to an unknown method,
that is with ?? instead of method name and such. Just a
thought:)
Yours sincerely,
Bjorn