Marcel Offermans wrote:
Hello Didier,
On Dec 18, 2007, at 23:35 , Didier Donsez wrote:
Moreover, sometime, there are dependencies between .dll and
.netmodule (like OSGi package dependencies)
Interesting remark, since today we were exploring some similar
scenarios with dependencies between a shared library that contains JNI
code and at the same time loads a DLL. You're right, those are just
another type of dependencies. Only the resolving and notification
mechanisms for them (in native code) are less sophisticated than in
Java with OSGi. That automatically places restrictions on the life
cycle of such dependencies.
You pretty much are screwed when native code loads native code, since we
can't intercept that...
-> richard