[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Loadlib work 5,1
- From: Roberto Ierusalimschy <roberto@...>
- Date: Fri, 03 Sep 2004 12:32:05 -0300
> > And is the unloading of dynamic libraries during run-time really
> > necessary?
> For Win32, yes.
> while (condition) {
> L=lua_open();
> lua_pcall(); /* loads libraries */
> lua_close(L);
> }
For "run-time" I meant at an arbitrary point during program execution,
not when closing Lua. The "unload-when-closing" case seems strong. My
question regards the "unload-at-programmer-will" case.
-- Roberto