Skip to content
Prev 32101 / 398506 Next

Reloading a shared library with dyn.load

As there is AFAIK no way to unregister entry points, you cannot safely
unload a DLL with registered entry points (which is what your code appears
to do).  So if you want to do this, don't register them,

Package tcltk does unload its DLL (so the Tcl/Tk dlls get released) if 
detached, and so was not modified to register.

Until un-registration is provided, I would not use the registration 
mechanisms during development.
On Fri, 16 May 2003, James Wettenhall wrote: